node-smm-api
Version:
Node.js client for SMM API for several platforms
20 lines (18 loc) • 401 B
JavaScript
class ApiError extends Error {
constructor(message) {
super(message);
this.name = 'ApiError';
this.isApiError = true;
}
}
class RateLimitError extends Error {
constructor(message) {
super(message);
this.name = 'RateLimitError';
this.isRateLimitError = true;
}
}
module.exports = {
ApiError,
RateLimitError
};