InterruptedException.php 311 B

1234567891011121314
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2017 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OC\Core\Command;
  8. /**
  9. * Exception for when the user hit ctrl-c
  10. */
  11. class InterruptedException extends \Exception {
  12. }