<?php
// +----------------------------------------------------------------------
// | [ 普通异常抛出  ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018-2020 rights reserved.
// +----------------------------------------------------------------------
// | Author: TABLE ME
// +----------------------------------------------------------------------
// | Date: 2020-08-25 16:21
// +----------------------------------------------------------------------
namespace library\exceptions;


use Throwable;

/**
 * Class AuthException
 * @package crmeb\exceptions
 */
class GeneralException extends \RuntimeException
{
    public function __construct($message = "", $code = 0, Throwable $previous = null)
    {
        if (is_array($message)) {
            $errInfo = $message;
            $message = $errInfo[1] ?? '未知错误';
            $code = $errInfo[0] ?? -1;
        }
        parent::__construct($message, $code, $previous);
    }
}