Package org.tweetyproject.commons
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.tweetyproject.commons.ParserException
- All Implemented Interfaces:
Serializable
This class models a general exception for parsing.
- Author:
- Matthias Thimm
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new parser exception with the given sub exception.ParserException
(String message) Creates a new parser exception with the given message. -
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 new parser exception with the given message.- Parameters:
message
- a string.
-
ParserException
Creates a new parser exception with the given sub exception.- Parameters:
e
- an exception.
-