private void program_ExceptionHandler(Exceptions.LineException e) { if (ExceptionHandler != null) { ExceptionHandler(this, new Exceptions.ExceptionHandlerArgs(e)); } else { throw e; } }
public ExceptionHandlerArgs(LineException exception) { Exception = exception; }