2013-10-07 13:11:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2013-10-08 13:40:42 +00:00
|
|
|
* Entity Too Large
|
2013-10-07 13:11:47 +00:00
|
|
|
*
|
|
|
|
* This exception is thrown whenever a user tries to upload a file which exceeds hard limitations
|
|
|
|
*
|
|
|
|
*/
|
2014-01-09 13:25:48 +00:00
|
|
|
class OC_Connector_Sabre_Exception_EntityTooLarge extends \Sabre\DAV\Exception {
|
2013-10-07 13:11:47 +00:00
|
|
|
|
2013-10-08 13:40:42 +00:00
|
|
|
/**
|
|
|
|
* Returns the HTTP status code for this exception
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getHTTPCode() {
|
2013-10-07 13:11:47 +00:00
|
|
|
|
2013-10-08 13:40:42 +00:00
|
|
|
return 413;
|
2013-10-07 13:11:47 +00:00
|
|
|
|
2013-10-08 13:40:42 +00:00
|
|
|
}
|
2013-10-07 13:11:47 +00:00
|
|
|
|
|
|
|
}
|