diff options
author | Jim Hahn <jrh3@att.com> | 2018-02-19 11:53:40 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2018-02-19 12:00:52 -0500 |
commit | e5c628fee6a6e6bb57a34d5b73e092d89ee26a5c (patch) | |
tree | dfa2df1b7f0933f8d2714863b63de434b330fa87 /LogParser/src/test/java/org | |
parent | b13f494b5573118a07b434389fe8f73fc5986e4b (diff) |
Fix compilation issue due to generic Exception
After modifying common to remove generic Exceptions, policy/engine would
no longer compile. Had to modify policy/engine to accomodate the
specific exception.
Change-Id: If339285235994119009a8dcf9484bc81016e2600
Issue-ID: POLICY-246
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'LogParser/src/test/java/org')
-rw-r--r-- | LogParser/src/test/java/org/onap/xacml/parser/ParseLogTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LogParser/src/test/java/org/onap/xacml/parser/ParseLogTest.java b/LogParser/src/test/java/org/onap/xacml/parser/ParseLogTest.java index 1f42ac39b..62af131a8 100644 --- a/LogParser/src/test/java/org/onap/xacml/parser/ParseLogTest.java +++ b/LogParser/src/test/java/org/onap/xacml/parser/ParseLogTest.java @@ -40,6 +40,7 @@ import org.junit.Test; import org.mockito.Mockito; import org.onap.policy.common.im.AdministrativeStateException; import org.onap.policy.common.im.IntegrityMonitor; +import org.onap.policy.common.im.IntegrityMonitorException; import org.onap.policy.common.im.StandbyStatusException; import org.onap.policy.common.logging.flexlogger.FlexLogger; import org.onap.policy.common.logging.flexlogger.Logger; @@ -488,7 +489,7 @@ public class ParseLogTest { im = Mockito.mock(IntegrityMonitor.class); try { Mockito.doNothing().when(im).startTransaction(); - } catch (StandbyStatusException | AdministrativeStateException e) { + } catch (IntegrityMonitorException e) { fail(); } Mockito.doNothing().when(im).endTransaction(); |