C# Class Grasp.Compilation.CompilationException

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

Public Methods

Method 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 method

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

CompilationException() public method

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
return System

CompilationException() public method

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
return System