diff options
Diffstat (limited to 'lib/public/TaskProcessing/Exception/NotFoundException.php')
-rw-r--r-- | lib/public/TaskProcessing/Exception/NotFoundException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/public/TaskProcessing/Exception/NotFoundException.php b/lib/public/TaskProcessing/Exception/NotFoundException.php new file mode 100644 index 00000000000..07ef4c61394 --- /dev/null +++ b/lib/public/TaskProcessing/Exception/NotFoundException.php @@ -0,0 +1,14 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCP\TaskProcessing\Exception; + +/** + * @since 30.0.0 + */ +class NotFoundException extends Exception { + +} |