/
talisman
/
gigachat-php-sdk
Обзор
Документация
Войти
/
talisman
/
gigachat-php-sdk
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Exception/ErrorGetModelsException.php
19 строк
470 B
aegorov
Psalm to 3
07 ноя 2024, 13:29
07 ноя 2024, 13:29
75ac314
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace Talismanfr\GigaChat\Exception; use Psr\Http\Message\ResponseInterface; class ErrorGetModelsException extends \Exception { public function __construct(private ResponseInterface $response, string $message = "", int $code = 0, ?\Throwable $previous = null) { parent::__construct($message, $code, $previous); } public function getResponse(): ResponseInterface { return $this->response; } }