C# Class System.AppDomainUnloadedException

Inheritance: SystemException
显示文件 Open project: nanoframework/CoreLibrary

Public Methods

Method Description
AppDomainUnloadedException ( )

Initializes a new instance of the AppDomainUnloadedException class.

AppDomainUnloadedException ( String message )

Initializes a new instance of the AppDomainUnloadedException class with a specified error message.

AppDomainUnloadedException ( String message, Exception innerException )

Initializes a new instance of the AppDomainUnloadedException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Method Details

AppDomainUnloadedException() public method

Initializes a new instance of the AppDomainUnloadedException class.

AppDomainUnloadedException() public method

Initializes a new instance of the AppDomainUnloadedException class with a specified error message.
public AppDomainUnloadedException ( String message )
message String The message that describes the error.

AppDomainUnloadedException() public method

Initializes a new instance of the AppDomainUnloadedException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public AppDomainUnloadedException ( String message, Exception innerException )
message String The message that describes the error.
innerException Exception The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.