123456789101112131415161718192021 |
- <?php
- namespace App\Exceptions\Sign;
- use Exception;
- class SignException extends Exception
- {
- /**
- * Create a new authentication exception.
- *
- * @param string $message
- * @return void
- */
- public function __construct($message = '签名错误')
- {
- parent::__construct($message);
- }
- }
|