C# Class ExpressiveAnnotations.Analysis.ParseErrorException

Inheritance: System.Exception
Afficher le fichier Open project: jwaliszko/ExpressiveAnnotations Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void
ParseErrorException ( SerializationInfo info, StreamingContext context ) : System

Method Details

ParseErrorException() public méthode

Initializes a new instance of the ParseErrorException class.
public ParseErrorException ( ) : System
Résultat System

ParseErrorException() public méthode

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

ParseErrorException() public méthode

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.
Résultat System

ParseErrorException() public méthode

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.
Résultat System

ParseErrorException() public méthode

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.
Résultat System