//
// LexerStateException.java: Internal error in the lexer state transition.
// 
// Author: Mosur Ravishankar
// Date: 18 Mar 1998
//


// Exception for catching potential internal errors in the lexer (bugs).
// This exception should never occur if everything is bug free.


public class LexerStateException extends Exception 
{
  public LexerStateException() 
    {
      super();
    }
}
