Skip to main content
.NET Framework Class Library
ApplicationException Class

The exception that is thrown when a non-fatal application error occurs.

Inheritance Hierarchy
SystemObject
   SystemException
    SystemApplicationException
      More...

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)
Syntax
<[%$TOPIC/ww58ded5_en-us_VS_110_2_0_0_0_0%]> _
<[%$TOPIC/ww58ded5_en-us_VS_110_2_0_0_0_1%](True)> _
Public Class ApplicationException _
	Inherits [%$TOPIC/ww58ded5_en-us_VS_110_2_0_0_0_2%]
[[%$TOPIC/ww58ded5_en-us_VS_110_2_0_1_0_0%]]
[[%$TOPIC/ww58ded5_en-us_VS_110_2_0_1_0_1%](true)]
public class ApplicationException : [%$TOPIC/ww58ded5_en-us_VS_110_2_0_1_0_2%]
[[%$TOPIC/ww58ded5_en-us_VS_110_2_0_2_0_0%]]
[[%$TOPIC/ww58ded5_en-us_VS_110_2_0_2_0_1%](true)]
public ref class ApplicationException : public [%$TOPIC/ww58ded5_en-us_VS_110_2_0_2_0_2%]
[<[%$TOPIC/ww58ded5_en-us_VS_110_2_0_3_0_0%]>]
[<[%$TOPIC/ww58ded5_en-us_VS_110_2_0_3_0_1%](true)>]
type ApplicationException =  
    class 
        inherit [%$TOPIC/ww58ded5_en-us_VS_110_2_0_3_0_2%] 
    end

The ApplicationException type exposes the following members.

Constructors
  NameDescription
Public method Supported by the XNA Framework ApplicationExceptionInitializes a new instance of the ApplicationException class.
Public method Supported by the XNA Framework ApplicationException(String)Initializes a new instance of the ApplicationException class with a specified error message.
Protected method ApplicationException(SerializationInfo, StreamingContext)Initializes a new instance of the ApplicationException class with serialized data.
Public method Supported by the XNA Framework ApplicationException(String, Exception)Initializes a new instance of the ApplicationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Top
Properties
  NameDescription
Public property DataGets a collection of key/value pairs that provide additional user-defined information about the exception. (Inherited from Exception.)
Public property HelpLinkGets or sets a link to the help file associated with this exception. (Inherited from Exception.)
Public property Supported by the XNA Framework HResultGets or sets HRESULT, a coded numerical value that is assigned to a specific exception. (Inherited from Exception.)
Public property Supported by the XNA Framework InnerExceptionGets the Exception instance that caused the current exception. (Inherited from Exception.)
Public property Supported by the XNA Framework MessageGets a message that describes the current exception. (Inherited from Exception.)
Public property SourceGets or sets the name of the application or the object that causes the error. (Inherited from Exception.)
Public property Supported by the XNA Framework StackTraceGets a string representation of the immediate frames on the call stack. (Inherited from Exception.)
Public property TargetSiteGets the method that throws the current exception. (Inherited from Exception.)
Top
Methods
  NameDescription
Public method Supported by the XNA Framework Equals(Object)Determines whether the specified object is equal to the current object. (Inherited from Object.)
Protected method Supported by the XNA Framework FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by the XNA Framework GetBaseExceptionWhen overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions. (Inherited from Exception.)
Public method Supported by the XNA Framework GetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public method GetObjectDataWhen overridden in a derived class, sets the SerializationInfo with information about the exception. (Inherited from Exception.)
Public method Supported by the XNA Framework GetTypeGets the runtime type of the current instance. (Inherited from Exception.)

In XNA Framework 3.0, this member is inherited from Object GetType.
Protected method Supported by the XNA Framework MemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by the XNA Framework ToStringCreates and returns a string representation of the current exception. (Inherited from Exception.)
Top
Events
  NameDescription
Protected event SerializeObjectStateOccurs when an exception is serialized to create an exception state object that contains serialized data about the exception. (Inherited from Exception.)
Top
Remarks

User applications, not the common language runtime, throw custom exceptions derived from the ApplicationException class. The ApplicationException class differentiates between exceptions defined by applications versus exceptions defined by the system.

If you are designing an application that needs to create its own exceptions, you are advised to derive custom exceptions from the Exception class. It was originally thought that custom exceptions should derive from the ApplicationException class; however in practice this has not been found to add significant value. For more information, see Best Practices for Handling Exceptions.

ApplicationException uses the HRESULT COR_E_APPLICATION, which has the value 0x80131600.

For a list of initial property values for an instance of ApplicationException, see the ApplicationException constructors.

Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.