TaskFailureException.php 319 B

123456789101112131415
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\TextProcessing\Exception;
  7. /**
  8. * Exception thrown when a task failed
  9. * @since 28.0.0
  10. * @deprecated 30.0.0
  11. */
  12. class TaskFailureException extends \RuntimeException {
  13. }