WrapperException constructor (1 of 4)

Initializes a new instance of the WrapperException class.

public WrapperException()

See Also


WrapperException constructor (2 of 4)

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

public WrapperException(string message)
parameter description
message The error message that explains the reason for the exception.

See Also


WrapperException constructor (3 of 4)

Initializes a new instance of the WrapperException class with a specified inner exception and an ErrorRecord.

public WrapperException(Exception innerException, ErrorRecord errorRecord)
parameter description
innerException The exception that is the cause of the current exception.
errorRecord The ErrorRecord associated with this exception.

See Also


WrapperException constructor (4 of 4)

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

public WrapperException(string message, Exception innerException)
parameter description
message The error message that explains the reason for the exception.
innerException The exception that is the cause of the current exception.

See Also