Package at.jku.ssw.fp.sect05_3.parser
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- at.jku.ssw.fp.sect05_3.parser.ParseException
-
- All Implemented Interfaces:
Serializable
public class ParseException extends Exception
Class for parse exceptions. Contains a message and stores the rest of tokens.- Author:
- Herbert Praehofer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException(String message, FList<String> input)
Constructor setting a message and the list of tokens left.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FList<String>
getInput()
Gets the list of tokens left.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-