@trophyso/node
Version:
NodeJS SDK for the Trophy API
33 lines (32 loc) • 964 B
JavaScript
;
/**
* This file was auto-generated by Fern from our API Definition.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TrophyApiError = void 0;
class TrophyApiError extends Error {
constructor({ message, statusCode, body }) {
super(buildMessage({ message, statusCode, body }));
Object.setPrototypeOf(this, TrophyApiError.prototype);
if (statusCode != null) {
this.statusCode = statusCode;
}
if (body !== undefined) {
this.body = body;
}
}
}
exports.TrophyApiError = TrophyApiError;
function buildMessage({ message, statusCode, body, }) {
let lines = [];
if (message != null) {
lines.push(message);
}
if (statusCode != null) {
lines.push(`Status code: ${statusCode.toString()}`);
}
if (body != null) {
lines.push(`Body: ${JSON.stringify(body, undefined, 2)}`);
}
return lines.join("\n");
}