C# Класс Stubble.Core.Classes.Exceptions.StubbleDataMissException

Represents errors that occur when data is not found when rendering a template
Наследование: StubbleException
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
StubbleDataMissException ( ) : System

Initializes a new instance of the StubbleDataMissException class.

StubbleDataMissException ( string message ) : System

Initializes a new instance of the StubbleDataMissException class with a specified error message.

StubbleDataMissException ( string message, Exception innerException ) : System

Initializes a new instance of the StubbleDataMissException class with a specified error message and a reference to the inner exception that is the cause of this exception.

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

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

Initializes a new instance of the StubbleDataMissException class.
public StubbleDataMissException ( ) : System
Результат System

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

Initializes a new instance of the StubbleDataMissException class with a specified error message.
public StubbleDataMissException ( string message ) : System
message string The message that describes the error.
Результат System

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

Initializes a new instance of the StubbleDataMissException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public StubbleDataMissException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
Результат System