Remove the declaration of thrown exception 15/98515/1
authoranushadasari <danush10@in.ibm.com>
Mon, 18 Nov 2019 15:21:29 +0000 (20:51 +0530)
committeranushadasari <danush10@in.ibm.com>
Mon, 18 Nov 2019 15:21:53 +0000 (20:51 +0530)
Remove the declaration of thrown exception 'com.fasterxml.jackson.core.JsonParseException' which is a subclass of 'java.io.IOException'.

Issue-ID: OPTFRA-632
Change-Id: Ibce8815c9c1edc3308ee00f2eb6063396dee133c
Signed-off-by: anushadasari <danush10@in.ibm.com>
cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/topology/TopologyRequestManager.java

index f62a851..a3f4e6d 100644 (file)
@@ -96,8 +96,7 @@ public class TopologyRequestManager {
      * @throws JsonMappingException the json mapping exception
      * @throws IOException Signals that an I/O exception has occurred.
      */
-    public TopologyResponse getTopologyResponse(UUID uuid)
-                    throws JsonParseException, JsonMappingException, IOException {
+    public TopologyResponse getTopologyResponse(UUID uuid) throws IOException {
         Topology row = getExistingTopology(uuid);
         if (row != null) {
             String responseString = row.getTopology();