审查视图

addons/epay/library/OrderException.php 280 字节
王智 authored
1 2 3 4
<?php

namespace addons\epay\library;
王智 authored
5
王智 authored
6 7 8 9 10 11 12 13 14 15 16
use think\Exception;

class OrderException extends Exception
{
    public function __construct($message = "", $code = 0, $data = [])
    {
        $this->message = $message;
        $this->code = $code;
        $this->data = $data;
    }
王智 authored
17
}