Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
duplicity /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
backends
[ DIR ]
drwxr-xr-x
__init__.py
1.13
KB
-rw-r--r--
_librsync.cpython-310-x86_64-l...
19.98
KB
-rw-r--r--
_librsyncmodule.c
14.1
KB
-rw-r--r--
asyncscheduler.py
10.56
KB
-rw-r--r--
backend.py
26.56
KB
-rw-r--r--
cached_ops.py
1.66
KB
-rw-r--r--
commandline.py
53.7
KB
-rw-r--r--
config.py
10.92
KB
-rw-r--r--
diffdir.py
26.5
KB
-rw-r--r--
dup_collections.py
46.48
KB
-rw-r--r--
dup_main.py
67.04
KB
-rw-r--r--
dup_temp.py
8.06
KB
-rw-r--r--
dup_threading.py
8.53
KB
-rw-r--r--
dup_time.py
11.37
KB
-rw-r--r--
errors.py
2.72
KB
-rw-r--r--
file_naming.py
16.8
KB
-rw-r--r--
filechunkio.py
2.63
KB
-rw-r--r--
globmatch.py
7.06
KB
-rw-r--r--
gpg.py
17.29
KB
-rw-r--r--
gpginterface.py
23.09
KB
-rw-r--r--
lazy.py
14.82
KB
-rw-r--r--
librsync.py
8.54
KB
-rw-r--r--
log.py
15.34
KB
-rw-r--r--
manifest.py
18.04
KB
-rw-r--r--
patchdir.py
22.04
KB
-rw-r--r--
path.py
28.56
KB
-rw-r--r--
progress.py
13.58
KB
-rw-r--r--
robust.py
2.44
KB
-rw-r--r--
selection.py
21.96
KB
-rw-r--r--
statistics.py
13.26
KB
-rw-r--r--
tarfile.py
1.27
KB
-rw-r--r--
tempdir.py
10.56
KB
-rw-r--r--
util.py
10.42
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : errors.py
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4; encoding:utf8 -*- # # Copyright 2002 Ben Escoto <ben@emerose.org> # Copyright 2007 Kenneth Loafman <kenneth@loafman.com> # # This file is part of duplicity. # # Duplicity is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your # option) any later version. # # Duplicity is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with duplicity; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA u""" Error/exception classes that do not fit naturally anywhere else. """ from duplicity import log class DuplicityError(Exception): pass class UserError(DuplicityError): u""" Subclasses use this in their inheritance hierarchy to signal that the error is a user generated one, and that it is therefore typically unsuitable to display a full stack trace. """ pass class NotSupported(DuplicityError): u""" Exception raised when an action cannot be completed because some particular feature is not supported by the environment. """ pass class ConflictingScheme(DuplicityError): u""" Raised to indicate an attempt was made to register a backend for a scheme for which there is already a backend registered. """ pass class InvalidBackendURL(UserError): u""" Raised to indicate a URL was not a valid backend URL. """ pass class UnsupportedBackendScheme(InvalidBackendURL, UserError): u""" Raised to indicate that a backend URL was parsed successfully as a URL, but was not supported. """ def __init__(self, url): InvalidBackendURL.__init__(self, (u"scheme not supported in url: %s" % (url,))) self.url = url class BackendException(DuplicityError): u""" Raised to indicate a backend specific problem. """ def __init__(self, msg, code=log.ErrorCode.backend_error): super(BackendException, self).__init__(msg) self.code = code class FatalBackendException(BackendException): u""" Raised to indicate a backend failed fatally. """ pass class TemporaryLoadException(BackendException): u""" Raised to indicate a temporary issue on the backend. Duplicity should back off for a bit and try again. """ pass class BadVolumeException(DuplicityError): pass
Close