Minor correction

This commit is contained in:
Netkas 2023-02-14 21:05:31 -05:00
parent 5064aed99f
commit f2d3c25c59

View file

@ -0,0 +1,21 @@
<?php
namespace TgBotLib\Exceptions;
use Exception;
use Throwable;
class TelegramException 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);
}
}