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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# SPDX-FileCopyrightText: © 2015-2022 Germar Reitze
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This file is part of the program "Back In Time" which is released under GNU
# General Public License v2 (GPLv2). See LICENSES directory or go to
# <https://spdx.org/licenses/GPL-2.0-or-later.html>.
class BackInTimeException(Exception):
pass
class MountException(BackInTimeException):
pass
class NoPubKeyLogin(MountException):
pass
class KnownHost(MountException):
pass
class HashCollision(BackInTimeException):
pass
class EncodeValueError(BackInTimeException):
pass
class StopException(BackInTimeException):
pass
class Timeout(BackInTimeException):
pass
class LastSnapshotSymlink(BackInTimeException):
pass
class InvalidChar(BackInTimeException):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
class InvalidCmd(BackInTimeException):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
class LimitExceeded(BackInTimeException):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
class PermissionDeniedByPolicy(BackInTimeException):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
|