node-brawlstars
Version:
Javascript library to communicate with BrawlStars API
15 lines (14 loc) • 675 B
TypeScript
import { BadRequestException } from './bad-request.exception';
import { ForbiddenException } from './forbidden.exception';
import { NotFoundException } from './not-found.exception';
import { InternalServerErrorException } from './internal-server-error.exception';
import { ThrottlerException } from './throttler.exception';
import { UnderMaintenanceException } from './under-maintenance.exception';
export declare const ExceptionByCode: {
400: typeof BadRequestException;
403: typeof ForbiddenException;
404: typeof NotFoundException;
429: typeof ThrottlerException;
500: typeof InternalServerErrorException;
503: typeof UnderMaintenanceException;
};