SystemException

SystemExceptionCF 1.0, ECMA 1.0, serializable

System (mscorlib.dll)class

This class is the base class of exceptions that represent .NET runtime errors. In contrast, ApplicationException is the base class for user-defined exceptions.

public class SystemException : Exception {
// Public Constructors
   public SystemException( );
   public SystemException(string message);
   public SystemException(string message, Exception innerException);
// Protected Constructors
   protected SystemException(System.Runtime.Serialization.SerializationInfo info,
        System.Runtime.Serialization.StreamingContext context);
}

Hierarchy

Object Exception(System.Runtime.Serialization.ISerializable) SystemException

Subclasses

Multiple types



    Part II: Programming with the .NET Framework
    Part IV: API Quick Reference
    Chapter 26. System