UNPKG

deep-package-manager

Version:
22 lines (18 loc) 554 B
/** * Created by AlexanderC on 5/25/15. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.MissingMicroserviceException = undefined; var _Exception = require('../../Exception/Exception'); class MissingMicroserviceException extends _Exception.Exception { /** * @param {String} identifier */ constructor(identifier) { super(`Missing microservice ${identifier}. Please assure you are using right microservice identifier!`); } } exports.MissingMicroserviceException = MissingMicroserviceException;