aboutsummaryrefslogtreecommitdiff
blob: a91b5cc0a076811320977f97cf9d202ca6308788 (plain)
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
31
32
33
34
35
36
# -*- coding: utf-8 -*-

"""
    exception.py
    ~~~~~~~~~~~~
    
    This module implements some Python classes that are the exceptions
    raised by g-Octave.
    
    :copyright: (c) 2009-2010 by Rafael Goncalves Martins
    :license: GPL-2, see LICENSE for more details.
"""

__all__ = [
    'ConfigException',
    'DescriptionException',
    'DescriptionTreeException',
    'EbuildException',
    'FetchException',
]


class ConfigException(Exception):
    pass

class DescriptionException(Exception):
    pass

class DescriptionTreeException(Exception):
    pass

class EbuildException(Exception):
    pass

class FetchException(Exception):
    pass