You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2019/09/16 12:50:42 UTC

[GitHub] [hbase] virajjasani commented on a change in pull request #627: HBASE-23024 : Replace initcause with Constructor arg

virajjasani commented on a change in pull request #627: HBASE-23024 : Replace initcause with Constructor arg
URL: https://github.com/apache/hbase/pull/627#discussion_r324654718
 
 

 ##########
 File path: hbase-client/src/main/java/org/apache/hadoop/hbase/DroppedSnapshotException.java
 ##########
 @@ -40,4 +40,15 @@ public DroppedSnapshotException() {
   public DroppedSnapshotException(String message) {
     super(message);
   }
+
+  /**
+   * DroppedSnapshotException with cause
+   *
+   * @param message the message for this exception
+   * @param cause the cause for this exception
+   */
+  public DroppedSnapshotException(String message, Throwable cause) {
+    super(message, cause);
+  }
+
 
 Review comment:
   Done

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services