diff options
author | Frank Karlitschek <karlitschek@gmx.de> | 2016-03-31 20:07:02 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@gmx.de> | 2016-03-31 20:07:02 +0200 |
commit | ba8c81e6d172ff39fbf9a05438c4d6025d280f0d (patch) | |
tree | aae090cb5da36458b435d8a893b4510409ae7cb1 /lib/public/Share/Exceptions/ShareNotFound.php | |
parent | bfb5748f1f9d0c76ce311a88ea117c0cb3d7a653 (diff) | |
parent | 8da48a4482a88625e5671c43e1b5f76a32d93abb (diff) | |
download | nextcloud-server-ba8c81e6d172ff39fbf9a05438c4d6025d280f0d.tar.gz nextcloud-server-ba8c81e6d172ff39fbf9a05438c4d6025d280f0d.zip |
Merge pull request #23526 from owncloud/fix_23337
Add setId and setProviderId to IShare interface
Diffstat (limited to 'lib/public/Share/Exceptions/ShareNotFound.php')
-rw-r--r-- | lib/public/Share/Exceptions/ShareNotFound.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/public/Share/Exceptions/ShareNotFound.php b/lib/public/Share/Exceptions/ShareNotFound.php new file mode 100644 index 00000000000..96e7c096492 --- /dev/null +++ b/lib/public/Share/Exceptions/ShareNotFound.php @@ -0,0 +1,32 @@ +<?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 OCP\Share\Exceptions; + +/** + * Class ShareNotFound + * + * @package OCP\Share\Exceptions + * @since 9.0.0 + */ +class ShareNotFound extends GenericShareException { + +} |