2001-07-06 Joe Shaw <joe@ximian.com>
[mono.git] / mcs / class / corlib / System / SystemException.cs
1 //
2 // System.SystemException.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 class SystemException : Exception {
13                 // Constructors
14                 public SystemException ()
15                         : base ("A system exception has occurred.");
16                 {
17                 }
18
19                 public SystemException (string message)
20                         : base (message)
21                 {
22                 }
23
24                 public SystemException (string message, Exception inner)
25                         : base (message, inner)
26                 {
27                 }
28         }
29 }