Represents the base exception class for all exceptions specific to Fauna interactions. More...
Public Member Functions | |
| FaunaException (string message) | |
| Initializes a FaunaException with a message. | |
| FaunaException (string message, Exception innerException) | |
| Initializes a FaunaException with a message and inner exception. | |
| FaunaException (ErrorInfo err) | |
| Initializes a FaunaException from an ErrorInfo instance. | |
Represents the base exception class for all exceptions specific to Fauna interactions.
Definition at line 8 of file FaunaException.cs.
| Fauna.Exceptions.FaunaException.FaunaException | ( | string | message | ) |
Initializes a FaunaException with a message.
| message | The exception message. |
Definition at line 14 of file FaunaException.cs.
| Fauna.Exceptions.FaunaException.FaunaException | ( | string | message, |
| Exception | innerException | ||
| ) |
Initializes a FaunaException with a message and inner exception.
| message | The exception message. |
| innerException | The inner exception. |
Definition at line 21 of file FaunaException.cs.
| Fauna.Exceptions.FaunaException.FaunaException | ( | ErrorInfo | err | ) |
Initializes a FaunaException from an ErrorInfo instance.
| err | The ErrorInfo from which to extract a message. |
Definition at line 28 of file FaunaException.cs.