Package org.locationtech.jts.jump.io
Class EndOfParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xml.sax.SAXException
-
- org.locationtech.jts.jump.io.EndOfParseException
-
- All Implemented Interfaces:
Serializable
public class EndOfParseException extends SAXException
This is a fake exception class so theGMLReader
can abort a read mid-stream via the standard SAX error handing methods.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EndOfParseException()
Creates newEndOfParseException
without detail message.EndOfParseException(String msg)
Constructs anEndOfParseException
with the specified detail message.
-
Method Summary
-
Methods inherited from class org.xml.sax.SAXException
getCause, getException, getMessage, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
EndOfParseException
public EndOfParseException()
Creates newEndOfParseException
without detail message.
-
EndOfParseException
public EndOfParseException(String msg)
Constructs anEndOfParseException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-