Class HandledException
This exception will be created -- but NOT THROWN -- by the Estrelica.Archer.Utility classes (e.g. APIFacade, DatabaseFacade, etc.) whenever a recoverable exception occurs and the operation is retried. If the caller has registered an ExceptionNotifier (Action<HandledException>) with the class instance (either directly or via a builder), the callback will be invoked with this exception (containing a message about what happened and the exception that occurred as InnerException) so they can log it if desired.
Inherited Members
Namespace: Estrelica.Utility
Assembly: Estrelica.Utility.dll
Syntax
[DoNotObfuscateType]
public class HandledException : Exception, ISerializable
Constructors
HandledException(string, Exception)
Declaration
public HandledException(string message, Exception innerException)
Parameters
string message |
Exception innerException |