added missing [Serializable] attribute
[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 using System.Globalization;
11 namespace System {
12
13         [Serializable]
14         public sealed class ExecutionEngineException : SystemException {
15                 // Constructors
16                 public ExecutionEngineException ()
17                         : base (Locale.GetText ("Internal error occurred")) // Haha. Nice.
18                 {
19                 }
20
21                 public ExecutionEngineException (string message)
22                         : base (message)
23                 {
24                 }
25
26                 public ExecutionEngineException (string message, Exception inner)
27                         : base (message, inner)
28                 {
29                 }
30         }
31 }