OCSException.php 273 B

12345678910111213141516
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\AppFramework\OCS;
  7. use Exception;
  8. /**
  9. * Class OCSException
  10. *
  11. * @since 9.1.0
  12. */
  13. class OCSException extends Exception {
  14. }