| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // System.SystemException.cs
- //
- // Author:
- // Joe Shaw ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System.Runtime.Serialization;
- namespace System {
- public class SystemException : Exception {
- // Constructors
- public SystemException ()
- : base ("A system exception has occurred.")
- {
- }
- public SystemException (string message)
- : base (message)
- {
- }
- protected SystemException(SerializationInfo info, StreamingContext context)
- : base (info, context) {
- }
-
- public SystemException (string message, Exception inner)
- : base (message, inner)
- {
- }
- }
- }
|