1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- "use strict";
- class ModuleFactory {
-
-
- create(data, callback) {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
- }
- module.exports = ModuleFactory;
|