File: exceptions.py

package info (click to toggle)
python-xsdata 26.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,200 kB
  • sloc: python: 31,234; xml: 422; makefile: 20; sh: 6
file content (30 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
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."""