Lean
$LEAN_TAG$
|
Base handler that will try get an exception file and line 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... | |
Static Public Member Functions | |
static bool | TryGetLineAndFile (string stackTrace, out string fileAndLine) |
Helper method to get the file and line from a C# stacktrace More... | |
Public Attributes | |
virtual int | Order => int.MaxValue |
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... | |
Base handler that will try get an exception file and line
Definition at line 24 of file SystemExceptionInterpreter.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.ClrBubbledExceptionInterpreter.
|
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.ClrBubbledExceptionInterpreter.
Definition at line 46 of file SystemExceptionInterpreter.cs.
|
static |
Helper method to get the file and line from a C# stacktrace
Definition at line 60 of file SystemExceptionInterpreter.cs.
virtual int QuantConnect.Exceptions.SystemExceptionInterpreter.Order => int.MaxValue |
Determines the order that an instance of this class should be called
Definition at line 31 of file SystemExceptionInterpreter.cs.