You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
309 B

<?php
/**
* Created by PhpStorm.
* User: Admin
* Date: 2018/11/15
* Time: 0:23
*/
namespace app\lib\exception;
class Success extends JsonException
{
public function __construct($message = "操作成功!", $data = null)
{
parent::__construct(0,$message, $data);
}
}