Remove Console.WriteLine.
[mono.git] / mcs / class / Mono.Debugger.Soft / Mono.Debugger.Soft / ObjectCollectedException.cs
1 using System;
2
3 namespace Mono.Debugger.Soft
4 {
5         public class ObjectCollectedException : Exception {
6                 
7                 public ObjectCollectedException () : base ("The requested operation cannot be completed because the object has been garbage collected.") {
8                 }
9         }
10 }