2022-03-19 10:37:45 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a RateLimit error from a request.
|
|
|
|
* @extends Error
|
|
|
|
*/
|
|
|
|
class RateLimitError extends Error {
|
|
|
|
constructor({ timeout, limit, method, path, route, global }) {
|
|
|
|
super(`A ${global ? 'global ' : ''}rate limit was hit on route ${route}`);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the error
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
this.name = 'RateLimitError';
|
|
|
|
|
|
|
|
/**
|
2022-05-14 08:06:15 +00:00
|
|
|
* Time until this rate limit ends, in milliseconds
|
2022-03-19 10:37:45 +00:00
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
this.timeout = timeout;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The HTTP method used for the request
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
this.method = method;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The path of the request relative to the HTTP endpoint
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
this.path = path;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The route of the request relative to the HTTP endpoint
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
this.route = route;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this rate limit is global
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this.global = global;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The maximum amount of requests of this endpoint
|
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
this.limit = limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-24 10:55:32 +00:00
|
|
|
module.exports = RateLimitError;
|