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

Represents errors that occur when data is not found when rendering a template
Inheritance: StubbleException
Afficher le fichier Open project: StubbleOrg/Stubble Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Initializes a new instance of the StubbleDataMissException class.
public StubbleDataMissException ( ) : System
Résultat System

StubbleDataMissException() public méthode

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.
Résultat System

StubbleDataMissException() public méthode

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.
Résultat System