summaryrefslogtreecommitdiffstats
path: root/lib/public/files/entitytoolargeexception.php
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-11-25 16:39:01 +0100
committerMorris Jobke <morris.jobke@gmail.com>2013-11-25 16:39:01 +0100
commit4e0fa85307105a40395987b3d6e50cb5a1652a18 (patch)
treef24198013ec0182376f45b7471b63310435ed573 /lib/public/files/entitytoolargeexception.php
parentbc8cc9142e08611104cdc4df9d518775ef576066 (diff)
downloadnextcloud-server-4e0fa85307105a40395987b3d6e50cb5a1652a18.tar.gz
nextcloud-server-4e0fa85307105a40395987b3d6e50cb5a1652a18.zip
page level doc blocks and class descriptions
Diffstat (limited to 'lib/public/files/entitytoolargeexception.php')
-rw-r--r--lib/public/files/entitytoolargeexception.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/files/entitytoolargeexception.php b/lib/public/files/entitytoolargeexception.php
index e0d93ccbcd0..eaa68a548b9 100644
--- a/lib/public/files/entitytoolargeexception.php
+++ b/lib/public/files/entitytoolargeexception.php
@@ -20,8 +20,16 @@
*
*/
+/**
+ * Public interface of ownCloud for apps to use.
+ * Files/EntityTooLargeException class
+ */
+
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
+/**
+ * Exception for too large entity
+ */
class EntityTooLargeException extends \Exception {}