diff options
Diffstat (limited to 'lib/private/connector/sabre/exception/entitytoolarge.php')
-rw-r--r-- | lib/private/connector/sabre/exception/entitytoolarge.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php new file mode 100644 index 00000000000..aa9b37a0496 --- /dev/null +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -0,0 +1,23 @@ +<?php + +/** + * EntityTooLarge + * + * This exception is thrown whenever a user tries to upload a file which exceeds hard limitations + * + */ +class OC_Connector_Sabre_Exception_EntityTooLarge extends Sabre_DAV_Exception { + + /** + * Returns the HTTP statuscode for this exception + * + * @return int + */ + public function getHTTPCode() { + +// return 413; + + return 450; + } + +} |