Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / base / client / CloudifyConnectException.java
index 3f378fd..5bcc27b 100644 (file)
 package org.onap.so.cloudify.base.client;
 
 /**
- * Custom RuntimeException to report connection errors to Openstack endpoints.
- * Must be a RuntimeException to conform with OpenstackClient interface, which
- * does not declare specific Exceptions.
+ * Custom RuntimeException to report connection errors to Openstack endpoints. Must be a RuntimeException to conform
+ * with OpenstackClient interface, which does not declare specific Exceptions.
  */
 public class CloudifyConnectException extends CloudifyBaseException {
 
-       private static final long serialVersionUID = 7294957362769575271L;
+    private static final long serialVersionUID = 7294957362769575271L;
 
-       public CloudifyConnectException(String message) {
-               super(message);
-       }
+    public CloudifyConnectException(String message) {
+        super(message);
+    }
 
-       public CloudifyConnectException(String message, Throwable cause) {
-               super(message, cause);
-       }
+    public CloudifyConnectException(String message, Throwable cause) {
+        super(message, cause);
+    }
 }