UNPKG

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