openjava.syntax
Class SyntaxException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--openjava.tools.parser.ParseException
                    |
                    +--openjava.syntax.SyntaxException
All Implemented Interfaces:
Serializable

public class SyntaxException
extends ParseException

Exception which occurs while processing syntax rules.

Since:
%SOFTWARE% 1.0
Version:
1.0
Author:
Michiaki Tatsubori
See Also:
SyntaxRule, Serialized Form

Field Summary
 
Fields inherited from class openjava.tools.parser.ParseException
currentToken, eol, expectedTokenSequences, specialConstructor, tokenImage
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
SyntaxException()
           
SyntaxException(ParseException e)
           
SyntaxException(String message)
           
SyntaxException(Token currentToken, int[][] expectedToken, String[] tokenImage)
           
 
Methods inherited from class openjava.tools.parser.ParseException
add_escapes, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

SyntaxException

public SyntaxException(ParseException e)

SyntaxException

public SyntaxException(Token currentToken,
                       int[][] expectedToken,
                       String[] tokenImage)

SyntaxException

public SyntaxException()

SyntaxException

public SyntaxException(String message)

SourceForge.net_Logo