| 1234567891011121314151617181920212223242526272829 |
- //
- // System.NullReferenceException.cs
- //
- // Author:
- // Joe Shaw ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- namespace System {
- public class NullReferenceException : SystemException {
- // Constructors
- public NullReferenceException ()
- : base ("A null value was found where an object instance was required")
- {
- }
- public NullReferenceException (string message)
- : base (message)
- {
- }
- public NullReferenceException (string message, Exception inner)
- : base (message, inner)
- {
- }
- }
- }
|