C# Class Stubble.Core.Classes.Exceptions.StubbleDataMissException

Represents errors that occur when data is not found when rendering a template
Inheritance: StubbleException
显示文件 Open project: StubbleOrg/Stubble Class Usage Examples

Public Methods

Method Description
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.

Method Details

StubbleDataMissException() public method

Initializes a new instance of the StubbleDataMissException class.
public StubbleDataMissException ( ) : System
return System

StubbleDataMissException() public method

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

StubbleDataMissException() public method

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