Files
nextcloud-spreed/lib/Exceptions/RemoteClientException.php
Joas Schilling 1ccbf67da2 chore: Run SPDX convertor
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-04-26 13:02:15 +02:00

26 lines
523 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Exceptions;
class RemoteClientException extends \Exception {
public function __construct(
string $message = '',
int $code = 0,
?\Throwable $previous = null,
protected array $responseData = [],
) {
parent::__construct($message, $code, $previous);
}
public function getResponseData(): array {
return $this->responseData;
}
}