summaryrefslogtreecommitdiffstats
path: root/integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java
diff options
context:
space:
mode:
authormmis <michael.morris@ericsson.com>2018-03-20 15:02:53 +0000
committermmis <michael.morris@ericsson.com>2018-03-20 15:09:50 +0000
commita00f4db1250355b756bd69c98465fdda3a4503ca (patch)
tree1bcf681ed62c18feb5bd6e97f1f893f748c4bd82 /integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java
parentff1b759ff023dc9a940ab9de4333adcac82b9867 (diff)
Removed checkstyle warnings
Removed checkstyle warnings in policy/common/im Issue-ID: POLICY-695 Change-Id: I32b4797249386c0d1bd0f50792880a1759503a67 Signed-off-by: mmis <michael.morris@ericsson.com>
Diffstat (limited to 'integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java')
-rw-r--r--integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java33
1 files changed, 15 insertions, 18 deletions
diff --git a/integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java b/integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java
index 588a4d61..1583a9d5 100644
--- a/integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java
+++ b/integrity-monitor/src/main/java/org/onap/policy/common/im/AllSeemsWellException.java
@@ -21,25 +21,22 @@
package org.onap.policy.common.im;
public class AllSeemsWellException extends IntegrityMonitorException {
-
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- public AllSeemsWellException(){
- super();
- }
+ private static final long serialVersionUID = 1L;
- public AllSeemsWellException(String msg) {
- super(msg);
- }
-
- public AllSeemsWellException(String msg, Exception cause) {
- super(msg, cause);
- }
+ public AllSeemsWellException() {
+ super();
+ }
- public AllSeemsWellException(Exception cause) {
- super(cause);
- }
+ public AllSeemsWellException(String msg) {
+ super(msg);
+ }
+
+ public AllSeemsWellException(String msg, Exception cause) {
+ super(msg, cause);
+ }
+
+ public AllSeemsWellException(Exception cause) {
+ super(cause);
+ }
}