Package edu.pdx.cs410J
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
edu.pdx.cs410J.ParserException
- All Implemented Interfaces:
Serializable
A
ParserException is thrown when a file or other data
source is being parsed and it is decided that the source is
malformatted.- Author:
- David Whitlock
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionParserException(String description) Creates a newParserExceptionwith a given descriptive message.ParserException(String description, Throwable cause) Creates a newParserExceptionthat was caused by another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParserException
Creates a newParserExceptionwith a given descriptive message. -
ParserException
Creates a newParserExceptionthat was caused by another exception.
-