Package io.pravega.client.tables
Class ConditionalTableUpdateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.pravega.client.tables.ConditionalTableUpdateException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BadKeyVersionException,NoSuchKeyException
public abstract class ConditionalTableUpdateException extends java.lang.ExceptionException that is thrown whenever a Conditional Update to aKeyValueTablefailed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConditionalTableUpdateException(java.lang.String tableName)Creates a new instance of theConditionalTableUpdateExceptionclass.ConditionalTableUpdateException(java.lang.String tableName, java.lang.String message)Creates a new instance of theConditionalTableUpdateExceptionclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTableName()
-
-
-
Constructor Detail
-
ConditionalTableUpdateException
public ConditionalTableUpdateException(java.lang.String tableName)
Creates a new instance of theConditionalTableUpdateExceptionclass.- Parameters:
tableName- The name of theKeyValueTablefor which the update failed.
-
ConditionalTableUpdateException
public ConditionalTableUpdateException(java.lang.String tableName, java.lang.String message)Creates a new instance of theConditionalTableUpdateExceptionclass.- Parameters:
tableName- The name of theKeyValueTablefor which the update failed.message- Error message.
-
-