for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @desc 验证码异常类
* @author vicens<[email protected]>
*/
namespace Vicens\Captcha\Exceptions;
use \Exception;
use Throwable;
class InvalidCaptcha extends Exception
{
public function __construct($message = "Invalid Captcha!", $code = 0, Throwable $previous = null)
parent::__construct($message, $code, $previous);
}