Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
xdg /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
BaseDirectory.py
5.62
KB
-rw-r--r--
Config.py
728
B
-rw-r--r--
DesktopEntry.py
17.05
KB
-rw-r--r--
Exceptions.py
2.44
KB
-rw-r--r--
IconTheme.py
15.71
KB
-rw-r--r--
IniFile.py
13.32
KB
-rw-r--r--
__init__.py
1.06
KB
-rw-r--r--
Locale.py
2.11
KB
-rw-r--r--
MenuEditor.py
18.48
KB
-rw-r--r--
Menu.py
38.68
KB
-rw-r--r--
Mime.py
25.63
KB
-rw-r--r--
RecentFiles.py
6.04
KB
-rw-r--r--
util.py
2.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Exceptions.py
""" Exception Classes for the xdg package """ debug = False class Error(Exception): """Base class for exceptions defined here.""" def __init__(self, msg): self.msg = msg Exception.__init__(self, msg) def __str__(self): return self.msg class ValidationError(Error): """Raised when a file fails to validate. The filename is the .file attribute. """ def __init__(self, msg, file): self.msg = msg self.file = file Error.__init__(self, "ValidationError in file '%s': %s " % (file, msg)) class ParsingError(Error): """Raised when a file cannot be parsed. The filename is the .file attribute. """ def __init__(self, msg, file): self.msg = msg self.file = file Error.__init__(self, "ParsingError in file '%s', %s" % (file, msg)) class NoKeyError(Error): """Raised when trying to access a nonexistant key in an INI-style file. Attributes are .key, .group and .file. """ def __init__(self, key, group, file): Error.__init__(self, "No key '%s' in group %s of file %s" % (key, group, file)) self.key = key self.group = group self.file = file class DuplicateKeyError(Error): """Raised when the same key occurs twice in an INI-style file. Attributes are .key, .group and .file. """ def __init__(self, key, group, file): Error.__init__(self, "Duplicate key '%s' in group %s of file %s" % (key, group, file)) self.key = key self.group = group self.file = file class NoGroupError(Error): """Raised when trying to access a nonexistant group in an INI-style file. Attributes are .group and .file. """ def __init__(self, group, file): Error.__init__(self, "No group: %s in file %s" % (group, file)) self.group = group self.file = file class DuplicateGroupError(Error): """Raised when the same key occurs twice in an INI-style file. Attributes are .group and .file. """ def __init__(self, group, file): Error.__init__(self, "Duplicate group: %s in file %s" % (group, file)) self.group = group self.file = file class NoThemeError(Error): """Raised when trying to access a nonexistant icon theme. The name of the theme is the .theme attribute. """ def __init__(self, theme): Error.__init__(self, "No such icon-theme: %s" % theme) self.theme = theme
Close