first commit

This commit is contained in:
Alex
2025-07-06 18:52:32 +03:00
commit bcd8a52d06
27 changed files with 1126 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?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);
}
}