jET
1.0beta1


prv.doman.fsa
Class UnknownLetterException

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

public class UnknownLetterException
extends AutomatonException

Thrown when the letter does not exist in automaton.

See Also:
Serialized Form

Constructor Summary
UnknownLetterException(java.lang.String letter)
          Creates new unknown letter exception.
 
Method Summary
 java.lang.String getLetter()
          Gets a letter.
 
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

UnknownLetterException

public UnknownLetterException(java.lang.String letter)
Creates new unknown letter exception.

Parameters:
letter - Letter.
Method Detail

getLetter

public java.lang.String getLetter()
Gets a letter.

Returns:
A letter.

jET
1.0beta1