diff options
Diffstat (limited to 'apps/files_external/lib/NotFoundException.php')
-rw-r--r-- | apps/files_external/lib/NotFoundException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_external/lib/NotFoundException.php b/apps/files_external/lib/NotFoundException.php new file mode 100644 index 00000000000..411a2212513 --- /dev/null +++ b/apps/files_external/lib/NotFoundException.php @@ -0,0 +1,14 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ +namespace OCA\Files_External; + +/** + * Storage is not found + */ +class NotFoundException extends \Exception { +} |