com.power.common.exception.RateLimiterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-util Show documentation
Show all versions of common-util Show documentation
ApplicationPower common-util
package com.power.common.exception;
import com.power.common.interfaces.IMessage;
/**
* Rate limiter exception
*
* @author yu 2018/12/2.
*/
public class RateLimiterException extends BaseRuntimeException {
public RateLimiterException(String errorMessage) {
super(errorMessage);
}
public RateLimiterException(IMessage iMessage) {
super(iMessage);
}
public RateLimiterException(IMessage errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy