Class RuntimeInconsistencyException
The exception that is thrown when an inconsistency in a runtime library has been detected.
Namespace: XploRe.Runtime
Assembly: XploRe.Runtime.dll
Syntax
public class RuntimeInconsistencyException : RuntimeException
Constructors
| Name | Description |
|---|---|
| RuntimeInconsistencyException() | Initialises a new RuntimeInconsistencyException instance with the default error message. |
| RuntimeInconsistencyException(String) | Initialises a new RuntimeInconsistencyException instance with a technical description on the detected runtime library inconsistency. |
| RuntimeInconsistencyException(String, Exception) | Initialises a new RuntimeInconsistencyException instance with a specified error message and a reference to the inner exception that is the cause of this exception. |
| RuntimeInconsistencyException(String, String) | Initialises a new RuntimeInconsistencyException instance with a technical description on the detected runtime library inconsistency and an error message. |
| RuntimeInconsistencyException(String, String, Exception) | Initialises a new RuntimeInconsistencyException instance with a specified error message and a reference to the inner exception that is the cause of this exception. |
Properties
| Name | Description |
|---|---|
| Inconsistency | Technical description of the detected inconsistency. |
| Message | Gets the error message including the technical description on the detected inconsistency, or only the error message if no inconsistency description is set. |
Methods
| Name | Description |
|---|---|
| FromUnexpectedNull<T>(Expression<Func<T>>) |
Creates a new RuntimeInconsistencyException instance for an unexpected null value.
|