C# Class Summer.Batch.Extra.Sort.SortException

Exception thrown when there are problems in a sort step. More specific sort exceptions should inherit from it.
Inheritance: System.Exception
Mostrar archivo Open project: SummerBatch/SummerBatch

Public Methods

Method Description
SortException ( string message ) : System

Constructs a new SortException with a message.

Protected Methods

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

Constructor for deserialization.

Method Details

SortException() protected method

Constructor for deserialization.
protected SortException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo the info holding the serialization data
context System.Runtime.Serialization.StreamingContext the serialization context
return System

SortException() public method

Constructs a new SortException with a message.
public SortException ( string message ) : System
message string the error message
return System