forked from notmyname/php-cloudfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudfiles_exceptions.php
More file actions
42 lines (39 loc) · 1.37 KB
/
cloudfiles_exceptions.php
File metadata and controls
42 lines (39 loc) · 1.37 KB
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
<?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
*/
class CloudFilesException extends Exception { }
class SyntaxException extends CloudFilesException { }
class AuthenticationException extends CloudFilesException { }
class InvalidResponseException extends CloudFilesException { }
class NonEmptyContainerException extends CloudFilesException { }
class NoSuchObjectException extends CloudFilesException { }
class NoSuchContainerException extends CloudFilesException { }
class NoSuchAccountException extends CloudFilesException { }
class MisMatchedChecksumException extends CloudFilesException { }
class IOException extends CloudFilesException { }
class CDNNotEnabledException extends CloudFilesException { }
class BadContentTypeException extends CloudFilesException { }
class InvalidUTF8Exception extends CloudFilesException { }
class ConnectionNotOpenException extends CloudFilesException { }
/* 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:
*/
?>