12345678910111213141516171819 |
- <?php
- namespace Yansongda\Pay\Exceptions;
- class BusinessException extends GatewayException
- {
- /**
- * Bootstrap.
- *
- * @author yansongda <me@yansonga.cn>
- *
- * @param string $message
- * @param array|string $raw
- */
- public function __construct($message, $raw = [])
- {
- parent::__construct('ERROR_BUSINESS: '.$message, $raw, self::ERROR_BUSINESS);
- }
- }
|