feat(http-error): add response

This commit is contained in:
Ali BARIN
2022-11-24 17:50:17 +01:00
parent cb664b563d
commit 23f56e4deb

View File

@@ -1,12 +1,17 @@
import type { AxiosResponse, AxiosError } from 'axios';
import { IJSONObject } from '@automatisch/types';
import BaseError from './base';
export default class HttpError extends BaseError {
constructor(error: IJSONObject) {
response: AxiosResponse;
constructor(error: AxiosError) {
const computedError =
((error.response as IJSONObject)?.data as IJSONObject) ||
(error.message as string);
error.response?.data as IJSONObject ||
error.message as string;
super(computedError);
this.response = error.response;
}
}