diff options
Diffstat (limited to 'sli')
-rwxr-xr-x[-rw-r--r--] | sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java b/sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java index db8ef15..e3bd099 100644..100755 --- a/sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java +++ b/sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java @@ -189,8 +189,10 @@ public class SvcLogicDblibStore implements SvcLogicStore { } else { return (null); } - } catch (Exception e) { + } catch (SQLException e) { throw new ConfigurationException("SQL query failed", e); + } catch (Exception e) { + throw new ConfigurationException("Graph processing failed", e); } finally { if (results != null) { try { |