BrokenPath.php 411 B

12345678910111213141516
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2020-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\Files_Sharing\Exceptions;
  8. /**
  9. * Expected path with a different root
  10. * Possible Error Codes:
  11. * 10 - Path not relative to data/ and point to the users file directory
  12. *
  13. */
  14. class BrokenPath extends \Exception {
  15. }