99100101102103104105106
} catch( final Throwable t ) { getLogger().info( "exception while loading listeners:" + t.getMessage() + "\n" ); t.printStackTrace(); throw new ApplicationException( t.getMessage(), t ); } }
139140141142143144145146147148149
} catch( final Throwable t ) { getLogger().info( "exception while starting:" + t.getMessage() + "\n" ); t.printStackTrace(); throw new ApplicationException( t.getMessage(), t ); } m_running = true; } }
192193194195196197198199200201202
} catch( final Throwable t ) { getLogger().info( "exception while stopping:" + t.getMessage() + "\n" ); t.printStackTrace(); throw new ApplicationException( t.getMessage(), t ); } m_running = false; } }