* recover from exceptional situations before throwing an exception.
*/
public void shutdownModule() throws ModuleShutdownException {
logger.info("Shutting down " + getClass().getName());
if (1 == 2) {
throw new ModuleShutdownException(null, null);
}
}