Lean
$LEAN_TAG$
|
Interprets PythonExceptionInterpreter instances More...
Public Member Functions | |
virtual bool | CanInterpret (Exception exception) |
Determines if this interpreter should be applied to the specified exception. f More... | |
virtual Exception | Interpret (Exception exception, IExceptionInterpreter innerInterpreter) |
Interprets the specified exception into a new exception More... | |
Public Attributes | |
virtual int | Order => int.MaxValue - 1 |
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 PythonExceptionInterpreter instances
Definition at line 25 of file PythonExceptionInterpreter.cs.
|
virtual |
Determines if this interpreter should be applied to the specified exception. f
exception | The exception to check |
Implements QuantConnect.Exceptions.IExceptionInterpreter.
Reimplemented in QuantConnect.Exceptions.KeyErrorPythonExceptionInterpreter, QuantConnect.Exceptions.NoMethodMatchPythonExceptionInterpreter, QuantConnect.Exceptions.UnsupportedOperandPythonExceptionInterpreter, and QuantConnect.Exceptions.InvalidTokenPythonExceptionInterpreter.
|
virtual |
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. |
Implements QuantConnect.Exceptions.IExceptionInterpreter.
Reimplemented in QuantConnect.Exceptions.KeyErrorPythonExceptionInterpreter, QuantConnect.Exceptions.InvalidTokenPythonExceptionInterpreter, QuantConnect.Exceptions.NoMethodMatchPythonExceptionInterpreter, and QuantConnect.Exceptions.UnsupportedOperandPythonExceptionInterpreter.
Definition at line 45 of file PythonExceptionInterpreter.cs.
virtual int QuantConnect.Exceptions.PythonExceptionInterpreter.Order => int.MaxValue - 1 |
Determines the order that an instance of this class should be called
Definition at line 30 of file PythonExceptionInterpreter.cs.