UNPKG

@ethersphere/bee-factory

Version:

Orchestration CLI for spinning up local development Bee cluster with Docker

30 lines (29 loc) 1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ContainerImageConflictError = exports.TimeoutError = void 0; /** * Thrown when the error is not related to Bee/network */ class TimeoutError extends Error { } exports.TimeoutError = TimeoutError; class ContainerImageConflictError extends Error { constructor(message, existingContainersImage, newContainersImage) { super(message); Object.defineProperty(this, "existingContainersImage", { enumerable: true, configurable: true, writable: true, value: void 0 }); Object.defineProperty(this, "newContainersImage", { enumerable: true, configurable: true, writable: true, value: void 0 }); this.existingContainersImage = existingContainersImage; this.newContainersImage = newContainersImage; } } exports.ContainerImageConflictError = ContainerImageConflictError;