AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / queryformats / exceptions / AAIFormatQueryResultFormatNotSupported.java
index 9d79330..add6264 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.serialization.queryformats.exceptions;
 
 public class AAIFormatQueryResultFormatNotSupported extends Exception {
 
-       private static final long serialVersionUID = -5814240842844624097L;
+    private static final long serialVersionUID = -5814240842844624097L;
 
-       public AAIFormatQueryResultFormatNotSupported() {}
+    public AAIFormatQueryResultFormatNotSupported() {
+    }
 
-       public AAIFormatQueryResultFormatNotSupported(String message) {
-               super(message);
-       }
+    public AAIFormatQueryResultFormatNotSupported(String message) {
+        super(message);
+    }
 
-       public AAIFormatQueryResultFormatNotSupported(Throwable cause) {
-               super(cause);
-       }
+    public AAIFormatQueryResultFormatNotSupported(Throwable cause) {
+        super(cause);
+    }
 
-       public AAIFormatQueryResultFormatNotSupported(String message, Throwable cause) {
-               super(message, cause);
-       }
+    public AAIFormatQueryResultFormatNotSupported(String message, Throwable cause) {
+        super(message, cause);
+    }
 }