Package org.locationtech.jts.io
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.locationtech.jts.io.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParseException extends java.lang.Exception
Thrown by aWKTReader
when a parsing problem occurs.- Version:
- 1.7
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException(java.lang.Exception e)
Creates aParseException
withe
s detail message.ParseException(java.lang.String message)
Creates aParseException
with the given detail message.ParseException(java.lang.String message, java.lang.Throwable e)
Creates aParseException
withe
s detail message.
-
-
-
Constructor Detail
-
ParseException
public ParseException(java.lang.String message)
Creates aParseException
with the given detail message.- Parameters:
message
- a description of thisParseException
-
ParseException
public ParseException(java.lang.Exception e)
Creates aParseException
withe
s detail message.- Parameters:
e
- an exception that occurred while aWKTReader
was parsing a Well-known Text string
-
ParseException
public ParseException(java.lang.String message, java.lang.Throwable e)
Creates aParseException
withe
s detail message.- Parameters:
message
- a description of thisParseException
e
- a throwable that occurred while a com.vividsolutions.jts.io reader was parsing a string representation
-
-