diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-03-20 14:12:36 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-03-20 14:12:36 +0100 |
commit | c6edbfecbee709e752400e0b085e930c51223dcc (patch) | |
tree | 7c9019bf0f80ef0ac191a308301cd8e068f95c9d /lib/private/share20/exception | |
parent | a6c921267e00d0fb5021e8bdbd4d202931d7a58a (diff) | |
download | nextcloud-server-c6edbfecbee709e752400e0b085e930c51223dcc.tar.gz nextcloud-server-c6edbfecbee709e752400e0b085e930c51223dcc.zip |
Move (new) sharing over to composer autoloader
Diffstat (limited to 'lib/private/share20/exception')
-rw-r--r-- | lib/private/share20/exception/backenderror.php | 25 | ||||
-rw-r--r-- | lib/private/share20/exception/invalidshare.php | 25 | ||||
-rw-r--r-- | lib/private/share20/exception/providerexception.php | 27 |
3 files changed, 0 insertions, 77 deletions
diff --git a/lib/private/share20/exception/backenderror.php b/lib/private/share20/exception/backenderror.php deleted file mode 100644 index f15dea4a243..00000000000 --- a/lib/private/share20/exception/backenderror.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php -/** - * @author Roeland Jago Douma <rullzer@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -namespace OC\Share20\Exception; - -class BackendError extends \Exception { - -} diff --git a/lib/private/share20/exception/invalidshare.php b/lib/private/share20/exception/invalidshare.php deleted file mode 100644 index c176e4424ba..00000000000 --- a/lib/private/share20/exception/invalidshare.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php -/** - * @author Roeland Jago Douma <rullzer@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -namespace OC\Share20\Exception; - -class InvalidShare extends \Exception { - -} diff --git a/lib/private/share20/exception/providerexception.php b/lib/private/share20/exception/providerexception.php deleted file mode 100644 index a14d5266581..00000000000 --- a/lib/private/share20/exception/providerexception.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * @author Roeland Jago Douma <rullzer@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -namespace OC\Share20\Exception; - - -class ProviderException extends \Exception { - -} - |