deep-package-manager
Version:
DEEP Package Manager
25 lines (21 loc) • 601 B
JavaScript
/**
* Created by AlexanderC on 5/25/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MissingRootIndexException = undefined;
var _Exception = require('../../Exception/Exception');
/**
* throws when missing property root index.html file
*/
class MissingRootIndexException extends _Exception.Exception {
/**
* @param {String} identifier
*/
constructor(identifier) {
super(`Missing root application (${identifier}) index.html bootstrap file (application entry point)`);
}
}
exports.MissingRootIndexException = MissingRootIndexException;