deep-package-manager
Version:
DEEP Package Manager
22 lines (18 loc) • 443 B
JavaScript
/**
* Created by AlexanderC on 5/25/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MissingRootException = undefined;
var _Exception = require('../../Exception/Exception');
/**
* throws when missing property root
*/
class MissingRootException extends _Exception.Exception {
constructor() {
super('Missing application root');
}
}
exports.MissingRootException = MissingRootException;