Esempio n. 1
0
 public void start() throws MinaException {
   try {
     log.info(Tagline.getTagLine());
     netMgr.start();
     started = true;
   } catch (MinaException e) {
     SafetyNet.notifyException(e, this);
     log.fatal("MinaException caught on startup, stopping Mina");
     stop();
     throw e;
   }
 }