Module pygmlparser.exceptions.GMLParseException
Expand source code
from pygmlparser.exceptions.GMLException import GMLException
class GMLParseException(GMLException):
"""
Raised when the parser encounters a file format inconsistency. The nature of
the exception is in the message.
"""
pass
Classes
class GMLParseException (...)
-
Raised when the parser encounters a file format inconsistency. The nature of the exception is in the message.
Expand source code
class GMLParseException(GMLException): """ Raised when the parser encounters a file format inconsistency. The nature of the exception is in the message. """ pass
Ancestors
- GMLException
- builtins.Exception
- builtins.BaseException