private void OnExceptionReport(object sender, Exception exception)
 {
     ExceptionReport?.Invoke(sender, new ExceptionReportEventArgs(exception));
 }
 private void OnExceptionReport(Exception exception)
 {
     ExceptionReport?.Invoke(this, new ExceptionReportEventArgs(exception));
 }