| 1 | <?php |
||
| 16 | class NotFound extends \Sabre\DAV\Exception\NotFound implements ExceptionInterface |
||
| 17 | { |
||
| 18 | //Error codes are not in order due backwards compatibility |
||
| 19 | const NODE_NOT_FOUND = 49; |
||
| 20 | const SHARE_NOT_FOUND = 50; |
||
| 21 | const REFERENCE_NOT_FOUND = 51; |
||
| 22 | const NOT_ALL_NODES_FOUND = 52; |
||
| 23 | const DESTINATION_NOT_FOUND = 54; |
||
| 24 | const PARENT_NOT_FOUND = 55; |
||
| 25 | const CONTENTS_NOT_FOUND = 57; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function getStatusCode(): int |
||
| 34 | } |
||
| 35 |