You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2014/08/23 00:06:31 UTC

[2/9] git commit: ACCUMULO-3012 Add missing serialVersionUID to new Exception

ACCUMULO-3012 Add missing serialVersionUID to new Exception


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/345332b0
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/345332b0
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/345332b0

Branch: refs/heads/1.6.1-SNAPSHOT
Commit: 345332b01b3cc33aba0d438b5ae3a8a6b6742ce1
Parents: 7136996
Author: Christopher Tubbs <ct...@apache.org>
Authored: Fri Aug 22 17:50:49 2014 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Fri Aug 22 17:50:49 2014 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/345332b0/core/src/main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java b/core/src/main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java
index abec58b..2c7a889 100644
--- a/core/src/main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/ConfigSanityCheck.java
@@ -102,6 +102,8 @@ public class ConfigSanityCheck {
    * The exception thrown when {@link ConfigSanityCheck#validate(Iterable)} fails.
    */
   public static class SanityCheckException extends RuntimeException {
+    private static final long serialVersionUID = 1L;
+
     /**
      * Creates a new exception with the given message.
      */