2014-09-29 05:13:01 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2026-02-09 04:53:58 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2014-09-29 05:13:01 -04:00
|
|
|
/**
|
2024-06-06 13:48:28 -04:00
|
|
|
* SPDX-FileCopyrightText: 2020-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2014-09-29 05:13:01 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\Files_Sharing\Exceptions;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Expected path with a different root
|
|
|
|
|
* Possible Error Codes:
|
|
|
|
|
* 10 - Path not relative to data/ and point to the users file directory
|
2020-04-08 16:24:54 -04:00
|
|
|
*
|
2014-09-29 05:13:01 -04:00
|
|
|
*/
|
|
|
|
|
class BrokenPath extends \Exception {
|
|
|
|
|
}
|