summaryrefslogtreecommitdiffstats
path: root/aai-core
diff options
context:
space:
mode:
authorWilliam Reehil <william.reehil@att.com>2020-07-06 17:59:01 +0000
committerGerrit Code Review <gerrit@onap.org>2020-07-06 17:59:01 +0000
commit32360766b31cc7df4b388985fe0524e6d3cc1dd4 (patch)
tree2cb9af0dd468de64fc451c18079692e97dde894b /aai-core
parent6a7dd87128b369c1bea97bf05f16ca1873f1d8e4 (diff)
parent77f3d84c297b62c5c7dd5a66f2e8cd32233cedb7 (diff)
Merge "Removed critical code smell"
Diffstat (limited to 'aai-core')
-rw-r--r--aai-core/src/main/java/org/onap/aai/introspection/exceptions/AAIUnmarshallingException.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/aai-core/src/main/java/org/onap/aai/introspection/exceptions/AAIUnmarshallingException.java b/aai-core/src/main/java/org/onap/aai/introspection/exceptions/AAIUnmarshallingException.java
index 5dfc5d3e..6ce42e4e 100644
--- a/aai-core/src/main/java/org/onap/aai/introspection/exceptions/AAIUnmarshallingException.java
+++ b/aai-core/src/main/java/org/onap/aai/introspection/exceptions/AAIUnmarshallingException.java
@@ -26,18 +26,19 @@ public class AAIUnmarshallingException extends AAIException {
private static final long serialVersionUID = -5615651557821878103L;
+ private static final String AAI_MSG="AAI_3000";
public AAIUnmarshallingException() {
}
public AAIUnmarshallingException(String message) {
- super("AAI_3000", message);
+ super(AAI_MSG, message);
}
public AAIUnmarshallingException(Throwable cause) {
- super("AAI_3000", cause);
+ super(AAI_MSG, cause);
}
public AAIUnmarshallingException(String message, Throwable cause) {
- super("AAI_3000", cause, message);
+ super(AAI_MSG, cause, message);
}
}