jET
1.0beta1


prv.doman.fsa
Class UnknownStateException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--prv.doman.fsa.AutomatonException
                    |
                    +--prv.doman.fsa.UnknownStateException
All Implemented Interfaces:
java.io.Serializable

public class UnknownStateException
extends AutomatonException

Thrown when the state does not exist in automaton.

See Also:
Serialized Form

Constructor Summary
UnknownStateException(java.lang.String stateName)
          Creates new unknown state exception.
 
Method Summary
 java.lang.String getState()
          Gets a state name.
 
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

UnknownStateException

public UnknownStateException(java.lang.String stateName)
Creates new unknown state exception.

Parameters:
stateName - State name.
Method Detail

getState

public java.lang.String getState()
Gets a state name.

Returns:
State name.

jET
1.0beta1