Package desmoj.core.exception

Examples of desmoj.core.exception.SimAbortedException


      }
    } catch (SimFinishedException sfEx) {
      ; // nothing done here, sfEx was just used to
        // finish this simthread after end of simulation
    } catch (InterruptException irqEx) {
      throw new SimAbortedException(
          new ErrorMessage(
              simProc.getModel(),
              "The simulation has been aborted due to an unhandled interrupt.",
              "SimProcess: " + simProc.getName() + " Method: void lifeCycle()",
              "The current SimProcess has been interrupted by a call to its interrupt(InterruptException interruptReason) method but this interrupt hasn't been properly handled by catching the given InterruptException.",
View Full Code Here

TOP

Related Classes of desmoj.core.exception.SimAbortedException

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.