2022-01-07 11:48:45 -05:00

23 lines
460 B
TypeScript

import type { Response } from '@vercel/fetch'
export class CommerceAPIError extends Error {
status: number
res: Response
data: any
constructor(msg: string, res: Response, data?: any) {
super(msg)
this.name = 'CommerceApiError'
this.status = res.status
this.res = res
this.data = data
}
}
export class CommerceNetworkError extends Error {
constructor(msg: string) {
super(msg)
this.name = 'CommerceNetworkError'
}
}