@telefonica/confluence-sync
Version:
Creates/updates/deletes Confluence pages based on a list of objects containing the page contents. Supports nested pages and attachments upload
14 lines (13 loc) • 619 B
JavaScript
;
// SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachmentsNotFoundError = void 0;
const CustomError_1 = require("./CustomError");
const ErrorHelpers_1 = require("./ErrorHelpers");
class AttachmentsNotFoundError extends CustomError_1.CustomError {
constructor(id, options) {
super(`Error getting attachments of page with id ${id}: ${(0, ErrorHelpers_1.getCauseMessage)(options?.cause)}`, options);
}
}
exports.AttachmentsNotFoundError = AttachmentsNotFoundError;