"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class InvalidJSONFormatException extends Error {
constructor(err, data) {
super(`Could not parse JSON: ${err.message}\nRequest data: ${data}`);
}
}
exports.InvalidJSONFormatException = InvalidJSONFormatException;