Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / SchemaProviderException.java
index 9a95c33..4fb99f0 100644 (file)
 
 package org.onap.aai.schemaif;
 
-
 public class SchemaProviderException extends Exception {
 
     private static final long serialVersionUID = 8162385108397238865L;
 
-
-    public SchemaProviderException() {}
+    public SchemaProviderException() {
+    }
 
     public SchemaProviderException(String message) {
         super(message);
@@ -41,7 +40,8 @@ public class SchemaProviderException extends Exception {
         super(message, cause);
     }
 
-    public SchemaProviderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
+    public SchemaProviderException(String message, Throwable cause, boolean enableSuppression,
+            boolean writableStackTrace) {
         super(message, cause, enableSuppression, writableStackTrace);
     }
 }