C# Class BitSharper.Threading.Execution.RejectedExecutionException

Inheritance: System.SystemException
Mostrar archivo Open project: TangibleCryptography/BitSharper

Public Methods

Method Description
RejectedExecutionException ( ) : System

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

RejectedExecutionException ( Exception innerException ) : System

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

RejectedExecutionException ( String message ) : System

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

RejectedExecutionException ( String message, Exception innerException ) : System

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

Protected Methods

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

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

Method Details

RejectedExecutionException() public method

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

RejectedExecutionException() public method

Constructs a BitSharper.Threading.Execution.RejectedExecutionException with the specified cause.
public RejectedExecutionException ( Exception innerException ) : System
innerException System.Exception the cause (which is saved for later retrieval by the)
return System

RejectedExecutionException() protected method

Creates a new instance of the BitSharper.Threading.Execution.RejectedExecutionException class.
protected RejectedExecutionException ( 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

RejectedExecutionException() public method

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

RejectedExecutionException() public method

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