C# Класс Grasp.Compilation.CompilationException

Indicates an error during compilation of a GraspSchema
Наследование: System.Exception
Показать файл Открыть проект Примеры использования класса

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

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

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

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

Initializes an exception with the specified schema
public CompilationException ( GraspSchema schema ) : System
schema GraspSchema The schema whose compilation caused the error
Результат System

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

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

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

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