public R bizException()

in paimon-web-server/src/main/java/org/apache/paimon/web/server/configrue/GlobalExceptionHandler.java [44:49]


    public R<Void> bizException(BaseException e) {
        if (e.getStatus() == null) {
            return R.failed(Status.INTERNAL_SERVER_ERROR_ARGS);
        }
        return R.failed(e.getStatus());
    }