nextcloud/lib/public/Comments/MessageTooLongException.php
Joas Schilling dd4e8957ea
fix(comments): Clarify stability of comments API
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-07-10 22:06:59 +02:00

19 lines
440 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCP\Comments;
use OCP\AppFramework\Attribute\Catchable;
/**
* Exception thrown when a comment message exceeds the allowed character limit
*
* @since 9.0.0
*/
#[Catchable('9.0.0')]
class MessageTooLongException extends \OverflowException {
}