阿里巴巴的 fastjson JSONException

try catch 了是数据解析发现还是崩溃 ,最后看了下源码发现 JSONException 是继承
RuntimeException ,不知道作者为什么这么做。

package com.alibaba.fastjson;

/**

  • @author wenshao[[email protected]]
    */
    @SuppressWarnings("serial")
    public class JSONException extends RuntimeException {

    public JSONException() {
    super();
    }

    public JSONException(String message) {
    super(message);
    }

    public JSONException(String message, Throwable cause) {
    super(message, cause);
    }
    }

你可能感兴趣的:(阿里巴巴的 fastjson JSONException)