{"version":3,"sources":["api/base/api-base-with-standard-error-handling.ts"],"names":["ApiBase","checkStandardApiError","ApiBaseWithStandardErrorHandling","constructor","basePath","super","checkError","response","this","reportError","error"],"mappings":"OAASA,YAAe,uBACfC,0BAA6B,4BAGhBC,yCAAyCF,QAC3DG,YAAYC,GACRC,MAAMD,GAKSE,WAAWC,GAC1B,OAAON,sBAAsBM,GAAU,EAAM,GAAWC,KAAKC,YAAYC,YAR3DR","file":"api-base-with-standard-error-handling.js","sourcesContent":["import { ApiBase } from \"./api-base.js\";\nimport { checkStandardApiError } from \"./error-handling.js\";\nimport { IStandardApiError } from \"./i-standard-api-error.js\";\n\nexport abstract class ApiBaseWithStandardErrorHandling extends ApiBase {\n constructor(basePath: string) {\n super(basePath);\n }\n\n protected abstract reportError(error: IStandardApiError): void;\n\n protected override checkError(response: Response): Promise {\n return checkStandardApiError(response, true, (error) => this.reportError(error));\n }\n}\n"]}