for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LeoCarmo\TelegramBot\Exceptions;
class RequiredParameterException extends \Exception
{
public function __construct(string $parameter)
parent::__construct("Required parameter not defined: $parameter");
}