C# Class Summer.Batch.Extra.Sort.Legacy.Parser.ParsingException

Inheritance: SortException
Mostrar archivo Open project: SummerBatch/SummerBatch

Public Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Sets the SerializationInfo with information about the exception.

ParsingException ( string message ) : System

Constructs a new ParsingException with a message but no parsed string or index.

ParsingException ( string message, string parsedString, int index ) : System

Constructs a new ParsingException with a message, a parsed string, and an index.

Protected Methods

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

Constructor for deserialization.

Method Details

GetObjectData() public method

Sets the SerializationInfo with information about the exception.
public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
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 void

ParsingException() protected method

Constructor for deserialization.
protected ParsingException ( 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

ParsingException() public method

Constructs a new ParsingException with a message but no parsed string or index.
public ParsingException ( string message ) : System
message string the error message
return System

ParsingException() public method

Constructs a new ParsingException with a message, a parsed string, and an index.
public ParsingException ( string message, string parsedString, int index ) : System
message string the error message
parsedString string the parsed string
index int an index in the parsed string
return System