C# Class ExpressiveAnnotations.Analysis.ParseErrorException

Inheritance: System.Exception
Mostra file Open project: jwaliszko/ExpressiveAnnotations Class Usage Examples

Public Methods

Method Description
ParseErrorException ( ) : System

Initializes a new instance of the ParseErrorException class.

ParseErrorException ( string message ) : System

Initializes a new instance of the ParseErrorException class.

ParseErrorException ( string message, Exception innerException ) : System

Initializes a new instance of the ParseErrorException class.

ParseErrorException ( string error, string expression, Location location ) : System

Initializes a new instance of the ParseErrorException class.

ParseErrorException ( string error, string expression, Location location, Exception innerException ) : System

Initializes a new instance of the ParseErrorException class.

Private Methods

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

Method Details

ParseErrorException() public method

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( ) : System
return System

ParseErrorException() public method

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( string message ) : System
message string The error message.
return System

ParseErrorException() public method

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( string message, Exception innerException ) : System
message string The error message.
innerException System.Exception The inner exception.
return System

ParseErrorException() public method

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( string error, string expression, Location location ) : System
error string The error message.
expression string The expression.
location Location The error location.
return System

ParseErrorException() public method

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( string error, string expression, Location location, Exception innerException ) : System
error string The error message.
expression string The expression.
location Location The error location.
innerException System.Exception The inner exception.
return System