![JAR search and dependency download from the Maven repository](/logo.png)
com.github.ratelimiter.core.exceptions.UpdateLimiterException 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 UpdateLimiterException extends RuntimeException {
public UpdateLimiterException() {
}
public UpdateLimiterException(String message) {
super(message);
}
public UpdateLimiterException(String message, Throwable cause) {
super(message, cause);
}
public UpdateLimiterException(Throwable cause) {
super(cause);
}
public UpdateLimiterException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy