Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / connector / http / HttpClientException.java
index eb967af..6f170ba 100644 (file)
 package org.onap.so.cloudify.connector.http;
 
 /*
- * Declare a RuntimeException since the Interface does not declare any
- * throwables.  Any caught exception will be wrapped in HttpClientException
+ * Declare a RuntimeException since the Interface does not declare any throwables. Any caught exception will be wrapped
+ * in HttpClientException
  */
 public class HttpClientException extends RuntimeException {
 
-       private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 1L;
 
-       public HttpClientException (String s) {
-               super (s);
-       }
-       
-       public HttpClientException (Exception e) {
-               super ("Caught nested exception in HttpClient", e);
-       }
-       
-       public HttpClientException (String s, Exception e) {
-               super (s, e);
-       }
+    public HttpClientException(String s) {
+        super(s);
+    }
+
+    public HttpClientException(Exception e) {
+        super("Caught nested exception in HttpClient", e);
+    }
+
+    public HttpClientException(String s, Exception e) {
+        super(s, e);
+    }
 }