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