diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-09 15:02:26 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-09 15:02:48 -0400 |
commit | ab41b57f6266200e1b1c94d45487975163deb560 (patch) | |
tree | 398fa78afd1c42c156e19042dcb01cb57f748ffe /3rdparty/Dropbox/Exception.php | |
parent | b46903fa767eae1152bcd285250556ebf13130b9 (diff) | |
download | nextcloud-server-ab41b57f6266200e1b1c94d45487975163deb560.tar.gz nextcloud-server-ab41b57f6266200e1b1c94d45487975163deb560.zip |
Add Dropbox storage backend
Diffstat (limited to '3rdparty/Dropbox/Exception.php')
-rw-r--r-- | 3rdparty/Dropbox/Exception.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3rdparty/Dropbox/Exception.php b/3rdparty/Dropbox/Exception.php new file mode 100644 index 00000000000..50cbc4c7915 --- /dev/null +++ b/3rdparty/Dropbox/Exception.php @@ -0,0 +1,15 @@ +<?php + +/** + * Dropbox base 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 + */ + +/** + * Base exception class + */ +class Dropbox_Exception extends Exception { } |