aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2018-11-09 08:02:39 -0500
committerPamela Dragosh <pdragosh@research.att.com>2018-11-09 08:02:47 -0500
commit789f09f2430440d6be44a5fad26715d002aff757 (patch)
tree1186f6fbc359102ceb641982e0f820eb8ef6bafd /plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions
parentc1647ba56080a79d149b2e9fd647bda4da39997e (diff)
Fix sonar/checkstyle issues
The main pom.xml was incorrect, so these issues have creeped into the source code. Issue-ID: POLICY-1256 Change-Id: Ic0b52f3a28f869252120991b0c1946ef8402bcc5 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions')
-rw-r--r--plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactDownloadException.java8
-rw-r--r--plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactInstallerException.java8
-rw-r--r--plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdControllerException.java8
-rw-r--r--plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdParametersException.java8
4 files changed, 16 insertions, 16 deletions
diff --git a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactDownloadException.java b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactDownloadException.java
index 89f305fd..a021870a 100644
--- a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactDownloadException.java
+++ b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactDownloadException.java
@@ -36,8 +36,8 @@ public class ArtifactDownloadException extends Exception {
*
* @param message The message to dump
*/
- public ArtifactDownloadException (final String message) {
- super (message);
+ public ArtifactDownloadException(final String message) {
+ super(message);
}
@@ -47,8 +47,8 @@ public class ArtifactDownloadException extends Exception {
* @param message The message to dump
* @param e the exception that caused this exception to be thrown
*/
- public ArtifactDownloadException (final String message, final Exception e) {
- super (message, e);
+ public ArtifactDownloadException(final String message, final Exception ex) {
+ super(message, ex);
}
}
diff --git a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactInstallerException.java b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactInstallerException.java
index 043b0a41..bc60813e 100644
--- a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactInstallerException.java
+++ b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/ArtifactInstallerException.java
@@ -36,8 +36,8 @@ public class ArtifactInstallerException extends Exception {
*
* @param message The message to dump
*/
- public ArtifactInstallerException (final String message) {
- super (message);
+ public ArtifactInstallerException(final String message) {
+ super(message);
}
@@ -47,8 +47,8 @@ public class ArtifactInstallerException extends Exception {
* @param message The message to dump
* @param e the exception that caused this exception to be thrown
*/
- public ArtifactInstallerException (final String message, final Exception e) {
- super (message, e);
+ public ArtifactInstallerException(final String message, final Exception ex) {
+ super(message, ex);
}
}
diff --git a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdControllerException.java b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdControllerException.java
index 9dece808..a2117c63 100644
--- a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdControllerException.java
+++ b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdControllerException.java
@@ -36,8 +36,8 @@ public class PssdControllerException extends Exception {
*
* @param message The message to dump
*/
- public PssdControllerException (final String message) {
- super (message);
+ public PssdControllerException(final String message) {
+ super(message);
}
@@ -47,8 +47,8 @@ public class PssdControllerException extends Exception {
* @param message The message to dump
* @param e the exception that caused this exception to be thrown
*/
- public PssdControllerException (final String message, final Exception e) {
- super (message, e);
+ public PssdControllerException(final String message, final Exception ex) {
+ super(message, ex);
}
}
diff --git a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdParametersException.java b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdParametersException.java
index ca17796c..26504c95 100644
--- a/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdParametersException.java
+++ b/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/exceptions/PssdParametersException.java
@@ -36,8 +36,8 @@ public class PssdParametersException extends Exception {
*
* @param message The message to dump
*/
- public PssdParametersException (final String message) {
- super (message);
+ public PssdParametersException(final String message) {
+ super(message);
}
@@ -47,8 +47,8 @@ public class PssdParametersException extends Exception {
* @param message The message to dump
* @param e the exception that caused this exception to be thrown
*/
- public PssdParametersException (final String message, final Exception e) {
- super (message, e);
+ public PssdParametersException(final String message, final Exception ex) {
+ super(message, ex);
}
}