Add DataNodeDoesNotExist Exception
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / exceptions / DataValidationException.java
index e6af607..57fc045 100644 (file)
@@ -24,6 +24,16 @@ public class DataValidationException extends CpsException {
 
     private static final long serialVersionUID = 7747941311132087621L;
 
+    /**
+     * Constructor.
+     *
+     * @param message the error message
+     * @param details the error details
+     */
+    public DataValidationException(final String message, final String details) {
+        super(message, details);
+    }
+
     /**
      * Constructor.
      *