forked from crowetic/commerce
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
// Used for GraphQL errors
|
|
export class BigcommerceGraphQLError extends Error {}
|
|
|
|
export class BigcommerceApiError extends Error {
|
|
status: number
|
|
res: Response
|
|
|
|
constructor(msg: string, res: Response) {
|
|
super(msg)
|
|
this.name = 'BigcommerceApiError'
|
|
this.status = res.status
|
|
this.res = res
|
|
}
|
|
}
|
|
|
|
export class BigcommerceNetworkError extends Error {
|
|
constructor(msg: string) {
|
|
super(msg)
|
|
this.name = 'BigcommerceNetworkError'
|
|
}
|
|
}
|