reportException abstract method

bool reportException(
  1. Exception exception
)

Reports the given exception to the underlying exception-handling system.

Implementations should return:

  • true if the exception was successfully handled or reported
  • false if 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);