C# Class Grasp.Compilation.CompilationException

Indicates an error during compilation of a GraspSchema
Inheritance: System.Exception
Afficher le fichier Open project: bwatts/Grasp Class Usage Examples

Méthodes publiques

Méthode Description
CompilationException ( GraspSchema schema ) : System

Initializes an exception with the specified schema

CompilationException ( GraspSchema schema, string message ) : System

Initializes an exception with the specified schema, message, and inner exception

CompilationException ( GraspSchema schema, string message, Exception inner ) : System

Initializes an exception with the specified schema, message, and inner exception

Method Details

CompilationException() public méthode

Initializes an exception with the specified schema
public CompilationException ( GraspSchema schema ) : System
schema GraspSchema The schema whose compilation caused the error
Résultat System

CompilationException() public méthode

Initializes an exception with the specified schema, message, and inner exception
public CompilationException ( GraspSchema schema, string message ) : System
schema GraspSchema The schema whose compilation caused the error
message string The message that describes the error
Résultat System

CompilationException() public méthode

Initializes an exception with the specified schema, message, and inner exception
public CompilationException ( GraspSchema schema, string message, Exception inner ) : System
schema GraspSchema The schema whose compilation caused the error
message string The message that describes the error
inner Exception The exception that is the cause of this exception
Résultat System