17 lines
280 B
PHP
Raw Normal View History

2025-08-01 11:39:06 +08:00
<?php
namespace addons\epay\library;
use think\Exception;
class OrderException extends Exception
{
public function __construct($message = "", $code = 0, $data = [])
{
$this->message = $message;
$this->code = $code;
$this->data = $data;
}
}