UNPKG

deep-package-manager

Version:
22 lines (18 loc) 525 B
/** * Created by CCristi on 6/15/16. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.DriverObjectNotAllowedException = undefined; var _RegistryException = require('../../../Exception/RegistryException'); class DriverObjectNotAllowedException extends _RegistryException.RegistryException { /** * @param {String} objPath */ constructor(objPath) { super(`'${objPath}' is not allowed`); } } exports.DriverObjectNotAllowedException = DriverObjectNotAllowedException;