System.AppDomainUnloadedException.AppDomainUnloadedException C# (CSharp) Method

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.
        public AppDomainUnloadedException(String message, Exception innerException)
            : base(message, innerException)
        {
        }
    }

Same methods

AppDomainUnloadedException::AppDomainUnloadedException ( )
AppDomainUnloadedException::AppDomainUnloadedException ( String message )
AppDomainUnloadedException