UNPKG

deep-package-manager

Version:
25 lines (21 loc) 483 B
/** * Created by AlexanderC on 5/25/15. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidConfigException = undefined; var _Exception = require('../../Exception/Exception'); /** * throws on invalid microservice configuration */ class InvalidConfigException extends _Exception.Exception { /** * @param {*} args */ constructor(...args) { super(...args); } } exports.InvalidConfigException = InvalidConfigException;