deepify
Version:
DEEP Development Tools
19 lines (15 loc) • 405 B
JavaScript
/**
* Created by AlexanderC on 8/7/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.InvalidActionException = undefined;
var _Exception = require('./Exception');
class InvalidActionException extends _Exception.Exception {
constructor() {
super('The action must be a Function instance');
}
}
exports.InvalidActionException = InvalidActionException;