Alon Bar-Lev has posted comments on this change.

Change subject: 9. [WIP] core: Introducing configuration loader
......................................................................


Patch Set 16:

(1 comment)

http://gerrit.ovirt.org/#/c/24365/16/backend/manager/modules/extension-manager/src/main/java/org/ovirt/engine/core/extensions/mgr/ConfigurationLoader.java
File 
backend/manager/modules/extension-manager/src/main/java/org/ovirt/engine/core/extensions/mgr/ConfigurationLoader.java:

Line 70:                     }
Line 71:                 } catch (ModuleLoadException exception) {
Line 72:                     throw new 
ConfigurationException(String.format("The module '%1$s' cannot be loaded.", 
moduleSpec),
Line 73:                             exception);
Line 74:                 }
> By throwing I can provide some more information at the log, if needed - for
should be:

 try {
    bla bla bla
 }
 catch (ModuleException e) {
 }
 catch (InstantiationException e) {
 }

no reason to have try/catch per operation in this case. you need it only if you 
have some duplicate generic exception that you need to remap.
Line 75:             }
Line 76:             try {
Line 77:                 Class<? extends Extension> extensionClass = 
extensionsByType.get(config.getString(TYPE));
Line 78:                 if (extensionClass == null) {


-- 
To view, visit http://gerrit.ovirt.org/24365
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I182904177ec088e62b35bde870ec79725fabc4e4
Gerrit-PatchSet: 16
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Yair Zaslavsky <yzasl...@redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alo...@redhat.com>
Gerrit-Reviewer: Martin Peřina <mper...@redhat.com>
Gerrit-Reviewer: Yair Zaslavsky <yzasl...@redhat.com>
Gerrit-Reviewer: oVirt Jenkins CI Server
Gerrit-HasComments: Yes
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to