2001-07-06 Joe Shaw <joe@ximian.com>
[mono.git] / mcs / class / corlib / System / ExecutionEngineException.cs
1 //
2 // System.ExecutionEngineException.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11
12         public sealed class ExecutionEngineException : SystemException {
13                 // Constructors
14                 public ExecutionEngineException ()
15                         : base ("Internal error occurred") // Haha. Nice.
16                 {
17                 }
18
19                 public ExecutionEngineException (string message)
20                         : base (message)
21                 {
22                 }
23
24                 public ExecutionEngineException (string message, Exception inner)
25                         : base (message, inner)
26                 {
27                 }
28         }
29 }