aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/php-cloudfiles/cloudfiles_exceptions.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-10-28 10:48:08 +0100
committerGeorg Ehrke <dev@georgswebsite.de>2012-10-28 10:48:08 +0100
commita2bbc1b3173d7e4106a27e7a99d61bea10ba6181 (patch)
tree777568a01b0c0a117cc2b89ee7c396f20eb7b49c /3rdparty/php-cloudfiles/cloudfiles_exceptions.php
parent5245e2b6beb971842c9760476372cef41a5d9a17 (diff)
downloadnextcloud-server-a2bbc1b3173d7e4106a27e7a99d61bea10ba6181.tar.gz
nextcloud-server-a2bbc1b3173d7e4106a27e7a99d61bea10ba6181.zip
remove 3rdparty files
Diffstat (limited to '3rdparty/php-cloudfiles/cloudfiles_exceptions.php')
-rw-r--r--3rdparty/php-cloudfiles/cloudfiles_exceptions.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/3rdparty/php-cloudfiles/cloudfiles_exceptions.php b/3rdparty/php-cloudfiles/cloudfiles_exceptions.php
deleted file mode 100644
index 5624d6b8634..00000000000
--- a/3rdparty/php-cloudfiles/cloudfiles_exceptions.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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 SyntaxException extends Exception { }
-class AuthenticationException extends Exception { }
-class InvalidResponseException extends Exception { }
-class NonEmptyContainerException extends Exception { }
-class NoSuchObjectException extends Exception { }
-class NoSuchContainerException extends Exception { }
-class NoSuchAccountException extends Exception { }
-class MisMatchedChecksumException extends Exception { }
-class IOException extends Exception { }
-class CDNNotEnabledException extends Exception { }
-class BadContentTypeException extends Exception { }
-class InvalidUTF8Exception extends Exception { }
-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:
- */
-?>