C# Класс Summer.Batch.Extra.Sort.Legacy.Parser.ParsingException

Наследование: SortException
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
ParsingException ( SerializationInfo info, StreamingContext context ) : System

Constructor for deserialization.

Описание методов

GetObjectData() публичный Метод

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. ///
Результат void

ParsingException() защищенный Метод

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
Результат System

ParsingException() публичный Метод

Constructs a new ParsingException with a message but no parsed string or index.
public ParsingException ( string message ) : System
message string the error message
Результат System

ParsingException() публичный Метод

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
Результат System