deep-package-manager
Version:
DEEP Package Manager
22 lines (18 loc) • 525 B
JavaScript
/**
* Created by CCristi on 6/15/16.
*/
;
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;