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

export class AppwriteBadRequestException extends AppwriteHttpException {

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