Package org.geotools.filter
Class MalformedFilterException
- All Implemented Interfaces:
Serializable
Defines an exception for a malformed filter.
- Author:
- Rob Hranac, Vision for New York, Chris Holmes, TOPP
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance ofMalformedFilterException
with the specified root cause.MalformedFilterException
(String message) Constructor with a message.MalformedFilterException
(String msg, Exception cause) Constructs an instance ofMalformedFilterException
with the specified detail message and root cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MalformedFilterException
Constructor with a message.- Parameters:
message
- information on the error.
-
MalformedFilterException
Constructs an instance ofMalformedFilterException
with the specified root cause.- Parameters:
cause
- the root cause of the exceptions.
-
MalformedFilterException
Constructs an instance ofMalformedFilterException
with the specified detail message and root cause.- Parameters:
msg
- the detail message.cause
- the root cause of the exceptions.
-