diff options
Diffstat (limited to 'core/Command/InterruptedException.php')
-rw-r--r-- | core/Command/InterruptedException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/Command/InterruptedException.php b/core/Command/InterruptedException.php new file mode 100644 index 00000000000..661e6672577 --- /dev/null +++ b/core/Command/InterruptedException.php @@ -0,0 +1,14 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2017 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ +namespace OC\Core\Command; + +/** + * Exception for when the user hit ctrl-c + */ +class InterruptedException extends \Exception { +} |