mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-22 15:51:08 +00:00
29 lines
558 B
PHP
29 lines
558 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Dropbox Exception class
|
||
|
* @author Ben Tadiar <ben@handcraftedbyben.co.uk>
|
||
|
* @link https://github.com/benthedesigner/dropbox
|
||
|
* @package Dropbox
|
||
|
*/
|
||
|
class Dropbox_Exception extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_BadRequestException extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_CurlException extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_NotAcceptableException extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_NotFoundException extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_NotModifiedException extends Exception {
|
||
|
}
|
||
|
|
||
|
class Dropbox_UnsupportedMediaTypeException extends Exception {
|
||
|
}
|