Package org.xmlBlaster.util

Examples of org.xmlBlaster.util.SignalCatcher


      if (this.panicErrorCodes.indexOf(e.getErrorCodeStr()) != -1) {
         log.severe("PANIC: Doing immediate shutdown caused by exception: " + e.getMessage());
         e.printStackTrace();
         log.severe(Global.getStackTraceAsString(e));
         log.severe("Complete stack trace (all threads at the time of shutdown: " + ThreadLister.getAllStackTraces());
         SignalCatcher sc = this.signalCatcher;
         if (sc != null) {
            sc.removeSignalCatcher();
         }
         System.exit(1);
      }
   }
View Full Code Here

TOP

Related Classes of org.xmlBlaster.util.SignalCatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.