org.shaneking.spring.currentlimiter.exception.CurrentLimiterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.shaneking.spring.currentlimiter Show documentation
Show all versions of org.shaneking.spring.currentlimiter Show documentation
Spring CurrentLimiter For ShaneKing
package org.shaneking.spring.currentlimiter.exception;
public class CurrentLimiterException extends RuntimeException {
public CurrentLimiterException() {
super();
}
public CurrentLimiterException(String message) {
super(message);
}
public CurrentLimiterException(String message, Throwable cause) {
super(message, cause);
}
public CurrentLimiterException(Throwable cause) {
super(cause);
}
}