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
ConstructorDescriptionParserException
(String description) Creates a newParserException
with a given descriptive message.ParserException
(String description, Throwable cause) Creates a newParserException
that 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 newParserException
with a given descriptive message. -
ParserException
Creates a newParserException
that was caused by another exception.
-