C# Class BitSharper.Threading.Execution.ExecutionException

Inheritance: System.Exception
Mostra file Open project: TangibleCryptography/BitSharper

Public Methods

Method Description
ExecutionException ( ) : System

Constructs a BitSharper.Threading.Execution.ExecutionException with no detail message.

ExecutionException ( Exception rootCause ) : System

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified cause.

ExecutionException ( String message ) : System

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified detail message.

ExecutionException ( String message, Exception cause ) : System

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified detail message and cause.

Protected Methods

Method Description
ExecutionException ( SerializationInfo info, StreamingContext context ) : System

Creates a new instance of the BitSharper.Threading.Execution.ExecutionException class.

Method Details

ExecutionException() public method

Constructs a BitSharper.Threading.Execution.ExecutionException with no detail message.
public ExecutionException ( ) : System
return System

ExecutionException() public method

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified cause.
public ExecutionException ( Exception rootCause ) : System
rootCause System.Exception The root exception that is being wrapped.
return System

ExecutionException() protected method

Creates a new instance of the BitSharper.Threading.Execution.ExecutionException class.
protected ExecutionException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The /// that holds the serialized object data about the exception being thrown. ///
context System.Runtime.Serialization.StreamingContext /// The /// that contains contextual information about the source or destination. ///
return System

ExecutionException() public method

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified detail message.
public ExecutionException ( String message ) : System
message String the detail message
return System

ExecutionException() public method

Constructs a BitSharper.Threading.Execution.ExecutionException with the specified detail message and cause.
public ExecutionException ( String message, Exception cause ) : System
message String the detail message
cause System.Exception the cause (which is saved for later retrieval by the
return System