AdminException.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\exceptions;
  12. /**
  13. * Class AuthException
  14. * @package crmeb\exceptions
  15. */
  16. class AdminException extends \RuntimeException
  17. {
  18. public function __construct($message, $replace = [], $code = 0, \Throwable $previous = null)
  19. {
  20. if (is_array($message)) {
  21. $errInfo = $message;
  22. $message = $errInfo[1] ?? '未知错误';
  23. if ($code === 0) {
  24. $code = $errInfo[0] ?? 400;
  25. }
  26. }
  27. if (is_numeric($message)) {
  28. $code = $message;
  29. $message = getLang($message, $replace);
  30. }
  31. parent::__construct($message, $code, $previous);
  32. }
  33. }