Package org.locationtech.jts.io
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.locationtech.jts.io.ParseException
-
- All Implemented Interfaces:
Serializable
public class ParseException extends Exception
Thrown by aWKTReader
when a parsing problem occurs.- Version:
- 1.7
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException(Exception e)
Creates aParseException
withe
s detail message.ParseException(String message)
Creates aParseException
with the given detail message.ParseException(String message, Throwable e)
Creates aParseException
withe
s detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ParseException
public ParseException(String message)
Creates aParseException
with the given detail message.- Parameters:
message
- a description of thisParseException
-
ParseException
public ParseException(Exception e)
Creates aParseException
withe
s detail message.- Parameters:
e
- an exception that occurred while aWKTReader
was parsing a Well-known Text string
-
-