DataSource.NET
7.1.23.41524-1415d4ff
|
Base class for all exceptions that are propagated to the client implementation of Caplin.Exceptions.IExceptionHandler but do not indicate that the application has reached a terminal state and should be restarted. More...
Public Member Functions | |
RecoverableException (string message, Exception inner) | |
Delegates to the constructor in Exception. More... | |
Base class for all exceptions that are propagated to the client implementation of Caplin.Exceptions.IExceptionHandler but do not indicate that the application has reached a terminal state and should be restarted.
Exceptions that inherit from this class are propagated to the Caplin.Exceptions.IExceptionHandler for informational purposes. It is the responsibility of the class that implements IExceptionHandler to determine the best course of action based on the exception type and the message.
|
inline |
Delegates to the constructor in Exception.
message | The error message that explains the reason for the exception. |
inner | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |