审查视图

addons/epay/library/OrderException.php 280 字节
王智 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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;
    }

}