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

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

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

/**
 * 超过最大限制异常
 *
 * @author longfei
 */
public class MaxLimitException extends ClientException {
    private static final long serialVersionUID = -4326840760150417725L;

    public MaxLimitException() {
        super();
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy