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

export class AppwriteForbiddenException extends AppwriteHttpException {

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