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/BackendError.php | |
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/BackendError.php')
-rw-r--r-- | lib/private/Share20/Exception/BackendError.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/private/Share20/Exception/BackendError.php b/lib/private/Share20/Exception/BackendError.php new file mode 100644 index 00000000000..f15dea4a243 --- /dev/null +++ b/lib/private/Share20/Exception/BackendError.php @@ -0,0 +1,25 @@ +<?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 { + +} |