Package io.pravega.client.tables
Class NoSuchKeyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.pravega.client.tables.ConditionalTableUpdateException
-
- io.pravega.client.tables.NoSuchKeyException
-
- All Implemented Interfaces:
java.io.Serializable
public class NoSuchKeyException extends ConditionalTableUpdateException
Exception that is thrown whenever a conditionalKeyValueTable
update failed due to the key not existing. This is different fromBadKeyVersionException
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSuchKeyException(java.lang.String tableName)
Creates a new instance of theNoSuchKeyException
class.
-
Method Summary
-
Methods inherited from class io.pravega.client.tables.ConditionalTableUpdateException
getTableName
-
-
-
-
Constructor Detail
-
NoSuchKeyException
public NoSuchKeyException(java.lang.String tableName)
Creates a new instance of theNoSuchKeyException
class.- Parameters:
tableName
- The name of theKeyValueTable
affected.
-
-