re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / exception / InvalidPropertyConstraintImplementationException.java
index 2b231d9..f4d920b 100644 (file)
@@ -28,13 +28,11 @@ package org.openecomp.sdc.be.model.tosca.constraints.exception;
  */
 public class InvalidPropertyConstraintImplementationException extends ConstraintTechnicalException {
 
-       private static final long serialVersionUID = 2797550944328544706L;
+    public InvalidPropertyConstraintImplementationException(String message, Throwable cause) {
+        super(message, cause);
+    }
 
-       public InvalidPropertyConstraintImplementationException(String message, Throwable cause) {
-               super(message, cause);
-       }
-
-       public InvalidPropertyConstraintImplementationException(String message) {
-               super(message);
-       }
+    public InvalidPropertyConstraintImplementationException(String message) {
+        super(message);
+    }
 }