deep-package-manager
Version:
DEEP Package Manager
25 lines (21 loc) • 483 B
JavaScript
/**
* Created by AlexanderC on 5/25/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.InvalidConfigException = undefined;
var _Exception = require('../../Exception/Exception');
/**
* throws on invalid microservice configuration
*/
class InvalidConfigException extends _Exception.Exception {
/**
* @param {*} args
*/
constructor(...args) {
super(...args);
}
}
exports.InvalidConfigException = InvalidConfigException;