1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| package com.qianwen.core.redis.ratelimiter;
|
| import java.util.concurrent.TimeUnit;
|
| public class RateLimiterException extends RuntimeException {
| private final String key;
| private final long max;
| private final long ttl;
| private final TimeUnit timeUnit;
|
| public String getKey() {
| return this.key;
| }
|
| public long getMax() {
| return this.max;
| }
|
| public long getTtl() {
| return this.ttl;
| }
|
| public TimeUnit getTimeUnit() {
| return this.timeUnit;
| }
|
| public RateLimiterException(String key, long max, long ttl, TimeUnit timeUnit) {
| super(String.format("您的访问次数已超限:%s,速率:%d/%ds", key, Long.valueOf(max), Long.valueOf(timeUnit.toSeconds(ttl))));
| this.key = key;
| this.max = max;
| this.ttl = ttl;
| this.timeUnit = timeUnit;
| }
| }
|
|