com.ruijc.fastjson.exception.DuplicateClassException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-fastjson Show documentation
Show all versions of spring-boot-starter-fastjson Show documentation
Springboot自动化配置Fastjson框架并支持JSONP操作。
package com.ruijc.fastjson.exception;
/**
* 异常
*
* @author Storezhang
*/
public class DuplicateClassException extends RuntimeException {
public DuplicateClassException() {
}
public DuplicateClassException(String message) {
super(message);
}
}