reportException abstract method
Reports the given exception to the underlying exception-handling system.
Implementations should return:
trueif the exception was successfully handled or reportedfalseif reporting failed or the exception was ignored
Parameters
- exception: The exception instance that should be reported.
Returns
A boolean indicating whether the exception was successfully reported.
Implementation
bool reportException(Exception exception);