aboutsummaryrefslogtreecommitdiffstats
path: root/python/atoma/exceptions.py
blob: 88170c52872029fd5694cb283420ca442898a40e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class FeedParseError(Exception):
    """Document is an invalid feed."""


class FeedDocumentError(Exception):
    """Document is not a supported file."""


class FeedXMLError(FeedDocumentError):
    """Document is not valid XML."""


class FeedJSONError(FeedDocumentError):
    """Document is not valid JSON."""