Merge pull request #2075 from kasthack/system-web-import-enums
[mono.git] / mcs / class / Mono.Debugger.Soft / Mono.Debugger.Soft / AbsentInformationException.cs
1 using System;
2
3 namespace Mono.Debugger.Soft
4 {
5         public class AbsentInformationException : Exception {
6                 
7                 public AbsentInformationException () : base ("Debug information is not available for this frame.") {
8                 }
9         }
10 }