mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-25 20:06:53 +00:00
21 lines
448 B
PHP
21 lines
448 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Exceptions;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Throwable;
|
|
|
|
class NotFoundException extends ClientApiException
|
|
{
|
|
public function __construct(
|
|
string $message,
|
|
string $errorCode,
|
|
?ResponseInterface $response,
|
|
?Throwable $previous = null,
|
|
) {
|
|
parent::__construct($message, $errorCode, $response, 404, $previous);
|
|
}
|
|
}
|