| Server IP : 68.178.247.200 / Your IP : 216.73.216.14 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/updraftplus/includes/cloudfiles/ |
Upload File : |
<?php
/**
* Custom Exceptions for the CloudFiles API
*
* Requres PHP 5.x (for Exceptions and OO syntax)
*
* See COPYING for license information.
*
* @author Eric "EJ" Johnson <ej@racklabs.com>
* @copyright Copyright (c) 2008, Rackspace US, Inc.
* @package php-cloudfiles-exceptions
*/
/**
* Custom Exceptions for the CloudFiles API
* @package php-cloudfiles-exceptions
*/
if (!class_exists('SyntaxException')) {
class SyntaxException extends Exception { }
}
if (!class_exists('AuthenticationException')) {
class AuthenticationException extends Exception { }
}
if (!class_exists('InvalidResponseException')) {
class InvalidResponseException extends Exception { }
}
if (!class_exists('NonEmptyContainerException')) {
class NonEmptyContainerException extends Exception { }
}
if (!class_exists('NoSuchObjectException')) {
class NoSuchObjectException extends Exception { }
}
if (!class_exists('NoSuchContainerException')) {
class NoSuchContainerException extends Exception { }
}
if (!class_exists('NoSuchAccountException')) {
class NoSuchAccountException extends Exception { }
}
if (!class_exists('MisMatchedChecksumException')) {
class MisMatchedChecksumException extends Exception { }
}
if (!class_exists('IOException')) {
class IOException extends Exception { }
}
if (!class_exists('CDNNotEnabledException')) {
class CDNNotEnabledException extends Exception { }
}
if (!class_exists('BadContentTypeException')) {
class BadContentTypeException extends Exception { }
}
if (!class_exists('InvalidUTF8Exception')) {
class InvalidUTF8Exception extends Exception { }
}
if (!class_exists('ConnectionNotOpenException')) {
class ConnectionNotOpenException extends Exception { }
}
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* c-hanging-comment-ender-p: nil
* End:
*/
?>