Package ratpack.parse
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ratpack.parse.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
NoSuchParserException,ParserException
public abstract class ParseException extends java.lang.RuntimeExceptionA generic super type for exceptions indicate something when wrong for a parse operation.- See Also:
ParserException,NoSuchParserException, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedParseException(java.lang.String message)Constructor.protectedParseException(java.lang.String message, java.lang.Throwable cause)Constructor.
-
-
-
Constructor Detail
-
ParseException
protected ParseException(java.lang.String message)
Constructor.- Parameters:
message- the exception message.
-
ParseException
protected ParseException(java.lang.String message, java.lang.Throwable cause)Constructor.- Parameters:
message- the exception message.cause- the exception to wrap
-
-