158159160161162163164165166167168169170
} } catch (IOException ex) { throw new CommandLineException (ex); } catch (RegexException ex) { throw new CommandLineException (ex); } }
132133134135136137138139140141142143144
sendEmail(); } catch (EmailException ex) { throw new CommandLineException (ex); } catch (IOException ex) { throw new CommandLineException (ex); } }
113114115116117118119120
runTest(); } catch (Exception ex) { throw new CommandLineException (ex); } }
114115116117118119120121
214215216217218219220221
message ("OK"); } catch (Exception ex) { throw new CommandLineException (ex); } }
7273747576777879
121122123124125126127128
114115116117118119120121122123124
foo(); } catch (Exception ex) { throw new CommandLineException ("org.clapper.util.misc.test.Test", "error", "Error (default)", ex); } }
131132133134135136137138139140141
throw new IOException ("Oops."); } catch (IOException ex) { throw new CommandLineException ("org.clapper.util.misc.test.Test", "pageNotFound", "default message", ex); } }
149150151152153154155156
} } catch (Exception ex) { throw new CommandLineException (ex); } }