UNPKG

@pallad/common-errors

Version:
11 lines (10 loc) 347 B
import { BaseError } from "./BaseError"; /** * Indicates that certain threshold was exceeded. * * For example organization has too many users or indicating rate limiting errors. */ export declare class LimitExceededError<T> extends BaseError { readonly payload?: T | undefined; constructor(message: string, payload?: T | undefined); }