mscorlib(4.0.0.0) API with additions
ApplicationException.cs
3 
4 namespace System
5 {
8  [ComVisible(true)]
10  {
13  : base(Environment.GetResourceString("Arg_ApplicationException"))
14  {
15  SetErrorCode(-2146232832);
16  }
17 
20  public ApplicationException(string message)
21  : base(message)
22  {
23  SetErrorCode(-2146232832);
24  }
25 
29  public ApplicationException(string message, Exception innerException)
30  : base(message, innerException)
31  {
32  SetErrorCode(-2146232832);
33  }
34 
39  : base(info, context)
40  {
41  }
42  }
43 }
Definition: __Canon.cs:3
Serves as the base class for application-defined exceptions.
Describes the source and destination of a given serialized stream, and provides an additional caller-...
ApplicationException(string message)
Initializes a new instance of the T:System.ApplicationException class with a specified error message.
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
ApplicationException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.ApplicationException class with serialized data.
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
ApplicationException(string message, Exception innerException)
Initializes a new instance of the T:System.ApplicationException class with a specified error message ...
Specifies that the class can be serialized.
ApplicationException()
Initializes a new instance of the T:System.ApplicationException class.