1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.InvalidJSONFormatException = void 0;
|
4 | /**
|
5 | * @publicApi
|
6 | */
|
7 | class InvalidJSONFormatException extends Error {
|
8 | constructor(err, data) {
|
9 | super(`Could not parse JSON: ${err.message}\nRequest data: ${data}`);
|
10 | }
|
11 | }
|
12 | exports.InvalidJSONFormatException = InvalidJSONFormatException;
|