14151617181920212223
String jsonString = null; try { jsonString = Utils.readFileAsString(filepath); } catch (IOException e) { throw new ModuleNotFoundException(moduleName); } return gson.fromJson(jsonString, Module.class); }