summaryrefslogtreecommitdiffstats
path: root/integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.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/ForwardProgressException.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/ForwardProgressException.java')
-rw-r--r--integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.java29
1 files changed, 16 insertions, 13 deletions
diff --git a/integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.java b/integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.java
index 5825c3a0..a72fe9e2 100644
--- a/integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.java
+++ b/integrity-monitor/src/main/java/org/onap/policy/common/im/ForwardProgressException.java
@@ -21,18 +21,21 @@
package org.onap.policy.common.im;
public class ForwardProgressException extends IntegrityMonitorException {
- private static final long serialVersionUID = 1L;
- public ForwardProgressException() {
- super();
- }
- public ForwardProgressException(String message) {
- super(message);
- }
+ private static final long serialVersionUID = 1L;
- public ForwardProgressException(Throwable cause) {
- super(cause);
- }
- public ForwardProgressException(String message, Throwable cause) {
- super(message, cause);
- }
+ public ForwardProgressException() {
+ super();
+ }
+
+ public ForwardProgressException(String message) {
+ super(message);
+ }
+
+ public ForwardProgressException(Throwable cause) {
+ super(cause);
+ }
+
+ public ForwardProgressException(String message, Throwable cause) {
+ super(message, cause);
+ }
}