sj.exceptions
Class CurTickNotDoneException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by sj.exceptions.CurTickNotDoneException
All Implemented Interfaces:
Serializable

public class CurTickNotDoneException
extends RuntimeException

Exception thrown if a current tick not done. This is for example the case if the method EmbeddedSJProgram.doTick(sj.Signal...) is called and not all threads of the current tick are terminated.

See Also:
Serialized Form
Rating red

Constructor Summary
CurTickNotDoneException()
          creates a new current-tick-not-done-exception.
CurTickNotDoneException(String errMessage)
          Creates a new current-tick-not-done-exception with a given error message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CurTickNotDoneException

public CurTickNotDoneException()
creates a new current-tick-not-done-exception.


CurTickNotDoneException

public CurTickNotDoneException(String errMessage)
Creates a new current-tick-not-done-exception with a given error message.

Parameters:
errMessage - The error message for the exception.