Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /snap/lxd/40111/lib/python3/dist-packages/ceph/ |
Upload File : |
class Error(Exception):
""" `Error` class, derived from `Exception` """
def __init__(self, message, errno=None):
super(Exception, self).__init__(message)
self.errno = errno
def __str__(self):
msg = super(Exception, self).__str__()
if self.errno is None:
return msg
return '[errno {0}] {1}'.format(self.errno, msg)
class InvalidArgumentError(Error):
pass
class OSError(Error):
""" `OSError` class, derived from `Error` """
pass
class InterruptedOrTimeoutError(OSError):
""" `InterruptedOrTimeoutError` class, derived from `OSError` """
pass
class PermissionError(OSError):
""" `PermissionError` class, derived from `OSError` """
pass
class PermissionDeniedError(OSError):
""" deal with EACCES related. """
pass
class ObjectNotFound(OSError):
""" `ObjectNotFound` class, derived from `OSError` """
pass
class NoData(OSError):
""" `NoData` class, derived from `OSError` """
pass
class ObjectExists(OSError):
""" `ObjectExists` class, derived from `OSError` """
pass
class ObjectBusy(OSError):
""" `ObjectBusy` class, derived from `IOError` """
pass
class IOError(OSError):
""" `ObjectBusy` class, derived from `OSError` """
pass
class NoSpace(OSError):
""" `NoSpace` class, derived from `OSError` """
pass
class RadosStateError(Error):
""" `RadosStateError` class, derived from `Error` """
pass
class IoctxStateError(Error):
""" `IoctxStateError` class, derived from `Error` """
pass
class ObjectStateError(Error):
""" `ObjectStateError` class, derived from `Error` """
pass
class LogicError(Error):
""" `` class, derived from `Error` """
pass
class TimedOut(OSError):
""" `TimedOut` class, derived from `OSError` """
pass