summaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/properties/MsoDatabaseException.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/main/java/org/onap/so/properties/MsoDatabaseException.java')
-rw-r--r--common/src/main/java/org/onap/so/properties/MsoDatabaseException.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/src/main/java/org/onap/so/properties/MsoDatabaseException.java b/common/src/main/java/org/onap/so/properties/MsoDatabaseException.java
index 84216af6e8..a7594789bc 100644
--- a/common/src/main/java/org/onap/so/properties/MsoDatabaseException.java
+++ b/common/src/main/java/org/onap/so/properties/MsoDatabaseException.java
@@ -35,17 +35,17 @@ public class MsoDatabaseException extends RuntimeException {
* @param message The message to dump
* @param cause The Throwable cause object
*/
- public MsoDatabaseException (final String message) {
- super (message);
-
+ public MsoDatabaseException(final String message) {
+ super(message);
+
}
-
+
/**
* @param message The message to dump
* @param cause The Throwable cause object
*/
- public MsoDatabaseException (final String message, final Throwable cause) {
- super (message, cause);
-
+ public MsoDatabaseException(final String message, final Throwable cause) {
+ super(message, cause);
+
}
}