com.github.ratelimiter.core.exceptions.OverLoadLimitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rate-limiter Show documentation
Show all versions of rate-limiter Show documentation
rate limiter for java application with simple annotation
The newest version!
package com.github.ratelimiter.core.exceptions;
/**
* Created by Administrator on 2015/8/10.
*/
public class OverLoadLimitException extends RuntimeException {
public OverLoadLimitException() {
}
public OverLoadLimitException(String message) {
super(message);
}
public OverLoadLimitException(String message, Throwable cause) {
super(message, cause);
}
public OverLoadLimitException(Throwable cause) {
super(cause);
}
public OverLoadLimitException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}