All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.wandersnail.common.http.exception.ConvertException Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package cn.wandersnail.common.http.exception;

/**
 * date: 2019/8/23 14:43
 * author: zengfansheng
 */
public class ConvertException extends RuntimeException {
    private static final long serialVersionUID = -4501070002355219441L;

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

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

    public ConvertException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy