libresign/lib/Exception/LibresignException.php
Vitor Mattos 034ff9ecbb
fix: psalm issues about override
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
2025-10-07 18:23:41 -03:00

21 lines
426 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020-2024 LibreCode coop and contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Libresign\Exception;
use JsonSerializable;
/**
* @codeCoverageIgnore
*/
class LibresignException extends \Exception implements JsonSerializable {
#[\Override]
public function jsonSerialize(): mixed {
return ['message' => $this->getMessage()];
}
}