1
0

NoBackendException.php 380 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Talk\Exceptions;
  8. use RuntimeException;
  9. /**
  10. * Thrown when the Talk API is accessed but there is no registered backend
  11. *
  12. * @since 24.0.0
  13. */
  14. final class NoBackendException extends RuntimeException {
  15. }