* @param e the exception that caused the shutdown
*/
public void shutdown(Throwable e) throws MuleException
{
Message msg = CoreMessages.fatalErrorWhileRunning();
MuleException muleException = ExceptionHelper.getRootMuleException(e);
if (muleException != null)
{
logger.fatal(muleException.getDetailedMessage());
}
else
{
logger.fatal(msg.toString() + " " + e.getMessage(), e);
}