Adds new custom Exception signaling invalid message 09/124609/4
authorRafal Wrzesniak <r.wrzesniak@partner.samsung.com>
Thu, 30 Sep 2021 10:04:32 +0000 (12:04 +0200)
committerRafal Wrzesniak <r.wrzesniak@partner.samsung.com>
Tue, 5 Oct 2021 09:44:57 +0000 (11:44 +0200)
Issue-ID: CCSDK-3465
Signed-off-by: Rafal Wrzesniak <r.wrzesniak@partner.samsung.com>
Change-Id: I7f8bd165a619cf3ca67f165a1303d9e911688f01

sdnr/wt/mountpoint-registrar/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/mountpointregistrar/impl/DMaaPVESMsgConsumerImpl.java
sdnr/wt/mountpoint-registrar/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/mountpointregistrar/impl/InvalidMessageException.java [new file with mode: 0644]

index 015e3ad..f6e70c6 100644 (file)
@@ -80,6 +80,8 @@ public abstract class DMaaPVESMsgConsumerImpl implements DMaaPVESMsgConsumer, DM
                     }
                 } catch (JsonProcessingException jsonProcessingException) {
                     LOG.warn("Failed to convert message to JsonNode: {}", jsonProcessingException.getMessage());
+                } catch (InvalidMessageException invalidMessageException) {
+                    LOG.warn("Message is invalid because of: {}", invalidMessageException.getMessage());
                 } catch (Exception e) {
                     LOG.error("Caught exception reading from DMaaP VES Message Topic", e);
                     running = false;
diff --git a/sdnr/wt/mountpoint-registrar/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/mountpointregistrar/impl/InvalidMessageException.java b/sdnr/wt/mountpoint-registrar/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/mountpointregistrar/impl/InvalidMessageException.java
new file mode 100644 (file)
index 0000000..ac9a51d
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt mountpoint-registrar
+ * =================================================================================================
+ * Copyright (C) 2021 Samsung Electronics Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+
+package org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl;
+
+public class InvalidMessageException extends Exception {
+
+    private final static String defaultMessage = "Message is invalid";
+    private final String exceptionInfo;
+
+    public InvalidMessageException() {
+        this.exceptionInfo = defaultMessage;
+    }
+
+    public InvalidMessageException(String exceptionInfo) {
+        this.exceptionInfo = exceptionInfo;
+    }
+
+    @Override
+    public String getMessage() {
+        return exceptionInfo;
+    }
+}