UNPKG

deep-package-manager

Version:
22 lines (18 loc) 547 B
/** * Created by AlexanderC on 2/12/16. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidRegistryConfigException = undefined; var _RegistryException = require('../../../../../Exception/RegistryException'); class InvalidRegistryConfigException extends _RegistryException.RegistryException { /** * @param {Error|String|*} error */ constructor(error) { super(`Invalid registry config object: ${error}`); } } exports.InvalidRegistryConfigException = InvalidRegistryConfigException;