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 2019/07/24 23:59:15 UTC

[accumulo] branch 2.0 updated: Improve exception javadoc in TableOperations (#1289)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.0 by this push:
     new 58a72f8  Improve exception javadoc in TableOperations (#1289)
58a72f8 is described below

commit 58a72f8e77fbca082f63543f4b0d79d9cea145b4
Author: Mike Miller <mm...@apache.org>
AuthorDate: Wed Jul 24 19:59:10 2019 -0400

    Improve exception javadoc in TableOperations (#1289)
---
 .../java/org/apache/accumulo/core/client/admin/TableOperations.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
index 0e645a3..750836c 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
@@ -507,7 +507,7 @@ public interface TableOperations {
    * @param tableName
    *          the name of the table
    * @throws AccumuloException
-   *           if a general error occurs
+   *           if a general error occurs. Wrapped TableNotFoundException if table does not exist.
    * @throws AccumuloSecurityException
    *           if the user does not have permission
    */
@@ -543,7 +543,7 @@ public interface TableOperations {
    * @param value
    *          the value to set a per-table property to
    * @throws AccumuloException
-   *           if a general error occurs
+   *           if a general error occurs. Wrapped TableNotFoundException if table does not exist.
    * @throws AccumuloSecurityException
    *           if the user does not have permission
    */
@@ -561,7 +561,7 @@ public interface TableOperations {
    * @param property
    *          the name of a per-table property
    * @throws AccumuloException
-   *           if a general error occurs
+   *           if a general error occurs. Wrapped TableNotFoundException if table does not exist.
    * @throws AccumuloSecurityException
    *           if the user does not have permission
    */