Class StateHandleStore.NotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.flink.util.FlinkException
-
- org.apache.flink.runtime.persistence.StateHandleStore.NotExistException
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- StateHandleStore<T extends Serializable,R extends ResourceVersion<R>>
public static class StateHandleStore.NotExistException extends FlinkException
The key does not exist in ConfigMap or the Zookeeper node does not exists.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotExistException(String message)
Creates a new Exception with the given message and null cause.NotExistException(String message, Throwable cause)
Creates a new Exception with the given message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotExistException
public NotExistException(String message, Throwable cause)
Creates a new Exception with the given message and cause.- Parameters:
message
- The exception messagecause
- The cause exception
-
NotExistException
public NotExistException(String message)
Creates a new Exception with the given message and null cause.- Parameters:
message
- The exception message
-
-