diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-13 14:31:11 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-13 14:31:11 -0700 |
commit | 6ff07f768165429384dd3068a045aaf3602a1383 (patch) | |
tree | 6d94117e77e3ad72da0f32adf5c6af45ac841381 /lib/public/files/notpermittedexception.php | |
parent | c149b57d3b4020c65d33966d5dc8395b8b821fc9 (diff) | |
parent | 6eeb4d165c5a0eb0c49375aa4141c59d6a63f164 (diff) | |
download | nextcloud-server-6ff07f768165429384dd3068a045aaf3602a1383.tar.gz nextcloud-server-6ff07f768165429384dd3068a045aaf3602a1383.zip |
Merge pull request #4712 from owncloud/fileapi-foreward
Provide an implementation of the fileapi for oc6 build on top of the old api
Diffstat (limited to 'lib/public/files/notpermittedexception.php')
-rw-r--r-- | lib/public/files/notpermittedexception.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/public/files/notpermittedexception.php b/lib/public/files/notpermittedexception.php new file mode 100644 index 00000000000..0509de7e829 --- /dev/null +++ b/lib/public/files/notpermittedexception.php @@ -0,0 +1,11 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class NotPermittedException extends \Exception {} |