Example #1
0
 private void OnUnhandledException(IrcException exception)
 {
     if (UnhandledException != null)
     {
         UnhandledException(this, new ExceptionEventArgs(exception));
     }
 }
Example #2
0
 public ExceptionEventArgs(IrcException exception)
 {
     _exception = exception;
 }