Applied fixes from StyleCI

This commit is contained in:
Sujit Prasad
2016-02-19 02:20:12 -05:00
committed by StyleCI Bot
parent be5df5334f
commit d637c2b23f
439 changed files with 19063 additions and 19210 deletions

View File

@@ -1,6 +1,6 @@
<?php
/**
* Custom Exceptions for the CloudFiles API
* Custom Exceptions for the CloudFiles API.
*
* Requres PHP 5.x (for Exceptions and OO syntax)
*
@@ -8,26 +8,50 @@
*
* @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
* Custom Exceptions for the CloudFiles API.
*/
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 { }
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: */
@@ -37,5 +61,4 @@ class ConnectionNotOpenException extends Exception { }
* c-basic-offset: 4
* c-hanging-comment-ender-p: nil
* End:
*/
?>
*/;