sj.exceptions
Class SignalNotDeclaredException

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

public class SignalNotDeclaredException
extends RuntimeException

Exception thrown if a signal used by an SJ program is not declared.

See Also:
Signal, EmbeddedSJProgram.addSignals(sj.Signal...), SJProgram.initSignals(), Serialized Form
Rating red

Constructor Summary
SignalNotDeclaredException()
          Creates a new signal-not-declared exception.
SignalNotDeclaredException(String errMessage)
          Creates a new signal-not-declared 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

SignalNotDeclaredException

public SignalNotDeclaredException()
Creates a new signal-not-declared exception.


SignalNotDeclaredException

public SignalNotDeclaredException(String errMessage)
Creates a new signal-not-declared exception with a given error message.

Parameters:
errMessage - The error message for the exception.