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

export class AppwriteConflictException extends AppwriteHttpException {

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