/// <summary> /// Invokes the caught unhandled exception event. /// </summary> /// <param name="sender">The sender.</param> /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param> internal void InvokeCaughtException(object sender, CaughtExceptionEventArgs e) { if (CaughtException != null) { CaughtException(this, e); } }
/// <summary> /// Invokes the caught unhandled exception event. /// </summary> /// <param name="sender">The sender.</param> /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param> internal void InvokeCaughtException(object sender, CaughtExceptionEventArgs e) { if (CaughtException != null) CaughtException(this, e); }