|
Lean
$LEAN_TAG$
|
Interprets ScheduledEventException instances More...
Public Member Functions | |
| bool | CanInterpret (Exception exception) |
| Determines if this interpreter should be applied to the specified exception. More... | |
| Exception | Interpret (Exception exception, IExceptionInterpreter innerInterpreter) |
| Interprets the specified exception into a new exception More... | |
Public Attributes | |
| int | Order => 0 |
| Determines the order that an instance of this class should be called More... | |
Additional Inherited Members | |
Properties inherited from QuantConnect.Exceptions.IExceptionInterpreter | |
| int | Order [get] |
| Determines the order that a class that implements this interface should be called More... | |
Interprets ScheduledEventException instances
Definition at line 24 of file ScheduledEventExceptionInterpreter.cs.
| bool QuantConnect.Exceptions.ScheduledEventExceptionInterpreter.CanInterpret | ( | Exception | exception | ) |
Determines if this interpreter should be applied to the specified exception.
| exception | The exception to check |
Implements QuantConnect.Exceptions.IExceptionInterpreter.
| Exception QuantConnect.Exceptions.ScheduledEventExceptionInterpreter.Interpret | ( | Exception | exception, |
| IExceptionInterpreter | innerInterpreter | ||
| ) |
Interprets the specified exception into a new exception
| exception | The exception to be interpreted |
| innerInterpreter | An interpreter that should be applied to the inner exception. This provides a link back allowing the inner exceptions to be interpreted using the interpreters configured in the IExceptionInterpreter. Individual implementations may ignore this value if required. |
Implements QuantConnect.Exceptions.IExceptionInterpreter.
Definition at line 47 of file ScheduledEventExceptionInterpreter.cs.
| int QuantConnect.Exceptions.ScheduledEventExceptionInterpreter.Order => 0 |
Determines the order that an instance of this class should be called
Definition at line 29 of file ScheduledEventExceptionInterpreter.cs.