dslengine
Version:
Engine to run DSL defined in the MaaP application
23 lines (18 loc) • 465 B
JavaScript
/**
* Exception throw when a token is request but the engine isn't connect with a
* db
*
* @history
* | Name | Action performed | Date |
* | --- | --- | --- |
* | Andrea Mantovani | Create class | 2016-06-01 |
*
* @author Andrea Mantovani
* @license MIT
*/
var NoConnectionEstabilished = function () {};
// TODO
NoConnectionEstabilished.prototype.message = function () {
return "";
};
module.exports = NoConnectionEstabilished;