import { AppwriteHttpException } from './appwrite-http.exception';

export class AppwriteTooManyRequestsException extends AppwriteHttpException {

  constructor(type: string, message: string) {
    super(429, type, message);
  }
}
