SystemException.php 642 B

1234567891011121314151617181920
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | saiadmin [ saiadmin快速开发框架 ]
  4. // +----------------------------------------------------------------------
  5. // | Author: sai <1430792918@qq.com>
  6. // +----------------------------------------------------------------------
  7. namespace plugin\saiadmin\exception;
  8. use Throwable;
  9. /**
  10. * 系统接口错误-返回json数据,并且记录异常日志
  11. */
  12. class SystemException extends \RuntimeException
  13. {
  14. public function __construct($message, $code = 400, Throwable $previous = null)
  15. {
  16. parent::__construct($message, $code, $previous);
  17. }
  18. }