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

com.houkunlin.system.common.aop.RequestRateLimiterException Maven / Gradle / Ivy

The newest version!
package com.houkunlin.system.common.aop;

import lombok.Getter;

/**
 * 请求限流
 *
 * @author HouKunLin
 */
@Getter
public class RequestRateLimiterException extends RuntimeException {
    private final RequestRateLimiter annotation;

    public RequestRateLimiterException(RequestRateLimiter annotation) {
        super(annotation.message());
        this.annotation = annotation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy