UNPKG

deep-package-manager

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