diff options
Diffstat (limited to '3rdparty/Dropbox/Exception/NotFound.php')
-rw-r--r-- | 3rdparty/Dropbox/Exception/NotFound.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3rdparty/Dropbox/Exception/NotFound.php b/3rdparty/Dropbox/Exception/NotFound.php new file mode 100644 index 00000000000..3deaf90d76b --- /dev/null +++ b/3rdparty/Dropbox/Exception/NotFound.php @@ -0,0 +1,20 @@ +<?php + +/** + * Dropbox Not Found exception + * + * @package Dropbox + * @copyright Copyright (C) 2010 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/dropbox-php/wiki/License MIT + */ + +/** + * This exception is thrown when a non-existant uri is accessed. + * + * Basically, this exception is used when we get back a 404. + */ +class Dropbox_Exception_NotFound extends Dropbox_Exception { + + +} |