Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / BatchException.java
index 4ed0940..15bec4e 100644 (file)
@@ -23,29 +23,29 @@ package org.onap.aaf.auth;
 
 public class BatchException extends Exception {
 
-       /**
-        
-        */
-       private static final long serialVersionUID = -3877245367723491192L;
-
-       public BatchException() {
-       }
-
-       public BatchException(String message) {
-               super(message);
-       }
-
-       public BatchException(Throwable cause) {
-               super(cause);
-       }
-
-       public BatchException(String message, Throwable cause) {
-               super(message, cause);
-       }
-
-       public BatchException(String message, Throwable cause,
-                       boolean enableSuppression, boolean writableStackTrace) {
-               super(message, cause, enableSuppression, writableStackTrace);
-       }
+    /**
+     * 
+     */
+    private static final long serialVersionUID = -3877245367723491192L;
+
+    public BatchException() {
+    }
+
+    public BatchException(String message) {
+        super(message);
+    }
+
+    public BatchException(Throwable cause) {
+        super(cause);
+    }
+
+    public BatchException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public BatchException(String message, Throwable cause,
+            boolean enableSuppression, boolean writableStackTrace) {
+        super(message, cause, enableSuppression, writableStackTrace);
+    }
 
 }