Files
hoppscotch/packages/hoppscotch-app/helpers/utils/JsonFormattedError.ts
Stephane 06161bc963 Show graphql error message (#1852)
Co-authored-by: StephaneBischoffSSENSE <stephane.bischoff@ssense.com>
Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
2021-10-04 08:01:47 +05:30

6 lines
134 B
TypeScript

export class JsonFormattedError extends Error {
constructor(jsonObject: any) {
super(JSON.stringify(jsonObject, null, 2))
}
}