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

com.feingto.cloud.exception.ExpiredException Maven / Gradle / Ivy

There is a newer version: 2.3.8.RELEASE
Show newest version
package com.feingto.cloud.exception;

/**
 * 过期失效异常
 *
 * @author longfei
 */
public class ExpiredException extends ServiceException {
    private static final long serialVersionUID = -230516381968127817L;

    public ExpiredException() {
        super();
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy