narendly commented on a change in pull request #558: New module hosting Helix 
Zookeeper access logic
URL: https://github.com/apache/helix/pull/558#discussion_r349832404
 
 

 ##########
 File path: 
helix-zk/src/main/java/org/apache/helix/zkscale/zk/ZkScaleException.java
 ##########
 @@ -0,0 +1,18 @@
+package org.apache.helix.zkscale.zk;
+
+public class ZkScaleException extends RuntimeException {
+
+  private static final long serialVersionUID = 6558251214364526258L; //todo: 
generate one
+
+  public ZkScaleException(String message) {
+    super(message);
+  }
+
+  public ZkScaleException(Throwable cause) {
+    super(cause);
+  }
+
+  public ZkScaleException(String message, Throwable cause) {
+    super(message, cause);
+  }
+}
 
 Review comment:
   Why are we adding this?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to