1
0

IllegalIDChangeException.php 343 B

123456789101112131415
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCP\Comments;
  8. /**
  9. * Exception for illegal attempts to modify a comment ID
  10. * @since 9.0.0
  11. */
  12. class IllegalIDChangeException extends \Exception {
  13. }