UNPKG

deep-package-manager

Version:
25 lines (21 loc) 601 B
/** * Created by AlexanderC on 5/25/15. */ 'use strict'; 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;