| 1 | <?php |
||
| 16 | class InsufficientStorage extends \Sabre\DAV\Exception\InsufficientStorage implements ExceptionInterface |
||
| 17 | { |
||
| 18 | //Error codes are not in order due backwards compatibility |
||
| 19 | const USER_QUOTA_FULL = 65; |
||
| 20 | const FILE_SIZE_LIMIT = 66; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function getStatusCode(): int |
||
| 29 | } |
||
| 30 |