1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
class ConverterError(ValueError):
"""Converting values between document/python types related errors."""
class ConverterWarning(Warning):
"""Converting values between document/python types recovered errors."""
class ParserError(ValueError):
"""Parsing related errors."""
class XmlHandlerError(ValueError):
"""Xml handler related errors."""
class XmlWriterError(ValueError):
"""Xml writer related errors."""
class SerializerError(ValueError):
"""Serializing related errors."""
class XmlContextError(ValueError):
"""Unhandled behaviour during data binding."""
class ClientValueError(ValueError):
"""Client related errors."""
|