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

com.genxiaogu.bigdata.ratelimiter.common.LimiterException Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.genxiaogu.bigdata.ratelimiter.common;

/**
 * Created by wb-lz260260 on 2017/7/4.
 */
public class LimiterException extends RuntimeException{
    private String msg;

    public LimiterException() {
        super();
    }

    public LimiterException(String msg) {
        super(msg);
        this.msg = msg;
    }

    public String getMsg() {
        return msg;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy