mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-27 16:40:50 +08:00
11 lines
241 B
Java
11 lines
241 B
Java
package com.openisle.exception;
|
|
|
|
/**
|
|
* Exception thrown when a user exceeds allowed action rate.
|
|
*/
|
|
public class RateLimitException extends RuntimeException {
|
|
public RateLimitException(String message) {
|
|
super(message);
|
|
}
|
|
}
|