Files
midi-php/addons/epay/library/v2/Yansongda/Pay/Exceptions/BusinessException.php

20 lines
406 B
PHP
Raw Normal View History

2025-08-13 10:43:56 +08:00
<?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);
}
}