MCP 3D Printer Server

by DMontgomery40
Verified
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrinterDirectoryUnavailable = exports.PrinterNotConnected = void 0; class PrinterNotConnected extends Error { constructor(message) { super(message !== null && message !== void 0 ? message : "The printer is not connected."); } } exports.PrinterNotConnected = PrinterNotConnected; class PrinterDirectoryUnavailable extends Error { constructor(path) { let pathString = path ? JSON.stringify(path) + " " : ""; super(`The directory ${pathString}is not available on the printer's SD card.`); } } exports.PrinterDirectoryUnavailable = PrinterDirectoryUnavailable; //# sourceMappingURL=errors.js.map