1234567891011121314151617181920 |
- <?php
- namespace Yansongda\Pay\Exceptions;
- class GatewayException extends Exception
- {
-
- public function __construct($message, $raw = [], $code = self::ERROR_GATEWAY)
- {
- parent::__construct('ERROR_GATEWAY: '.$message, $raw, $code);
- }
- }
|