diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2019-06-25 19:34:38 -0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-12-03 08:10:27 +0100 |
commit | 5794f14df905380cb179cc8eb13dec60d96dfcc6 (patch) | |
tree | 4ea2fd5baf57dc6f51d139c44d5831d7f9db665d /apps/files_sharing/lib/Exceptions | |
parent | 1e91b6a716ab85f402e4b9dbdb4107ff133e1597 (diff) | |
download | nextcloud-server-5794f14df905380cb179cc8eb13dec60d96dfcc6.tar.gz nextcloud-server-5794f14df905380cb179cc8eb13dec60d96dfcc6.zip |
Inherited Shares
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
working on users with resharing rights
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-getLogger()
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
cleaning
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
fix type
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Update SharingRightsException.php
Diffstat (limited to 'apps/files_sharing/lib/Exceptions')
-rw-r--r-- | apps/files_sharing/lib/Exceptions/SharingRightsException.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Exceptions/SharingRightsException.php b/apps/files_sharing/lib/Exceptions/SharingRightsException.php new file mode 100644 index 00000000000..2ec496c0421 --- /dev/null +++ b/apps/files_sharing/lib/Exceptions/SharingRightsException.php @@ -0,0 +1,40 @@ +<?php + +/** + * @copyright Copyright (c) 2019, Maxence Lange <maxence@artificial-owl.com> + * + * @author Maxence Lange <maxence@artificial-owl.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\Files_Sharing\Exceptions; + +use Exception; + + +/** + * Sharing and Resharing rights. + * + * Class SharingRightsException + * + * @package OCA\Files_Sharing\Exceptions + */ +class SharingRightsException extends Exception { + +} + |