aboutsummaryrefslogtreecommitdiffstats
path: root/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java
diff options
context:
space:
mode:
authorPooja03 <PM00501616@techmahindra.com>2018-03-27 19:44:23 +0530
committerPooja03 <PM00501616@techmahindra.com>2018-03-27 19:44:43 +0530
commit8297bd0760ff3c46ef36d5a6408a757cf36097fe (patch)
tree8436740e2c4039c4e5e93bcdf66792844a89ecbe /UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java
parenta0cd2159e2dbfde7613ea7dda8db1eacced4ca69 (diff)
Added UniversalVesAdapter TestCases in the Mapper
Adding UniversalVesAdapter TestCases in Mapper Change-Id: I68023d84ada0104ecf46a74e129e104a398543ea Issue-ID: DCAEGEN2-335 Signed-off-by: Pooja03 <PM00501616@techmahindra.com>
Diffstat (limited to 'UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java')
-rw-r--r--UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java b/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java
index 1daa939..7055bc0 100644
--- a/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java
+++ b/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/exception/ConfigFileSmooksConversionException.java
@@ -26,7 +26,7 @@ package org.onap.universalvesadapter.exception;
* @author kmalbari
*
*/
-public class ConfigFileSmooksConversionException extends Exception {
+public class ConfigFileSmooksConversionException extends VesException {
/**
*
@@ -36,5 +36,9 @@ public class ConfigFileSmooksConversionException extends Exception {
public ConfigFileSmooksConversionException(String string) {
super(string);
}
+
+ public ConfigFileSmooksConversionException(String string, Exception exception) {
+ super(string, exception);
+ }
}