C# Class Vertesaur.NoInverseException

An exception that is thrown when a request for an inverse transformation is not available.
Often a property such as HasInverse should be checked before attempting to get an inverse of a transformation.
Inheritance: System.Exception
Mostrar archivo Open project: aarondandy/vertesaur

Public Methods

Method Description
NoInverseException ( ) : System

A default no inverse exception.

NoInverseException ( string message ) : System

A no inverse exception with a custom message.

NoInverseException ( string message, Exception innerException ) : System

A no inverse exception with a custom message an nested exception.

Method Details

NoInverseException() public method

A default no inverse exception.
public NoInverseException ( ) : System
return System

NoInverseException() public method

A no inverse exception with a custom message.
public NoInverseException ( string message ) : System
message string The optional exception message.
return System

NoInverseException() public method

A no inverse exception with a custom message an nested exception.
public NoInverseException ( string message, Exception innerException ) : System
message string The optional exception message.
innerException System.Exception The exception which caused this exception.
return System