UNPKG

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