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.Exception
Exception that is thrown whenever a Conditional Update to aKeyValueTable
failed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConditionalTableUpdateException(java.lang.String tableName)
Creates a new instance of theConditionalTableUpdateException
class.ConditionalTableUpdateException(java.lang.String tableName, java.lang.String message)
Creates a new instance of theConditionalTableUpdateException
class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getTableName()
-
-
-
Constructor Detail
-
ConditionalTableUpdateException
public ConditionalTableUpdateException(java.lang.String tableName)
Creates a new instance of theConditionalTableUpdateException
class.- Parameters:
tableName
- The name of theKeyValueTable
for which the update failed.
-
ConditionalTableUpdateException
public ConditionalTableUpdateException(java.lang.String tableName, java.lang.String message)
Creates a new instance of theConditionalTableUpdateException
class.- Parameters:
tableName
- The name of theKeyValueTable
for which the update failed.message
- Error message.
-
-