tgbotlib/src/TgBotLib/Exceptions/RequestException.php
2023-02-14 20:57:15 -05:00

22 lines
No EOL
492 B
PHP

<?php
namespace TgBotLib\Exceptions;
use Exception;
use Throwable;
class RequestException extends Exception
{
/**
* Public Constructor
*
* @param string $message
* @param int $code
* @param Throwable|null $previous
*/
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}