in src/services/rest/processResponse.ts [3:8]
export async function processErrors(response: Response) {
if (!response.ok) {
const message = await response.clone().text()
throw new HTTPError(message, response.status, response.url, response)
}
}