Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exceptions.py « fuse « bareos - github.com/bareos/python-bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a7eb2f9a3a618c1741cd8a75bb35329da1f093f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Bareos-Fuse specific exceptions
"""

class ParameterMissing(Exception):
    """parameter missing"""
    pass

class SocketConnectionRefused(Exception):
    """network socket connection refused"""
    pass

class RestoreClientUnknown(Exception):
    """given restore client is not known"""
    pass

class RestoreJobUnknown(Exception):
    """given restore job is not known"""
    pass

class RestorePathInvalid(Exception):
    """restore path is invalid"""
    pass