457458459460461462463464465466467
System.exit(-1); } protected void throwException (Exception e, String error) throws MinuteProjectException { logger.error(error); MinuteProjectException mpe = new MinuteProjectException(); mpe.setError(error); if (e!=null) mpe.setMessage(e.getMessage()); throw mpe; }