UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

9 lines (6 loc) 231 B
import { AppwriteHttpException } from './appwrite-http.exception'; export class AppwriteTooManyRequestsException extends AppwriteHttpException { constructor(type: string, message: string) { super(429, type, message); } }