Example #1
0
 internal void OnUnhandledException(WlProxy proxy, Exception exception)
 {
     UnhandledEventHandlerException?.Invoke(this, new UnhandledEventHandlerExceptionEventArgs(proxy, exception));
 }
Example #2
0
 public UnhandledEventHandlerExceptionEventArgs(WlProxy proxy, Exception exception)
 {
     Proxy     = proxy;
     Exception = exception;
 }