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