Package io.tarantool.driver.exceptions
Class TarantoolNoSuchProcedureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.tarantool.driver.exceptions.TarantoolException
-
- io.tarantool.driver.exceptions.TarantoolNoSuchProcedureException
-
- All Implemented Interfaces:
Serializable
public class TarantoolNoSuchProcedureException extends TarantoolException
Corresponds to an exception that occurs when the procedure has not (yet) been defined in the Tarantool instance. For example: this exception can be raised when a Cartridge role is not up yet or is being reloaded at the moment. This can happen when the tarantool 'router' node is restarted or hot-reloaded but the cluster is under load at the moment. If CRUD module is used in the cluster then 'cartridge.roles.crud-router' may have not been initialized yet and all requests to CRUD will fail with this exception. You can use this exception when you are sure that it's worth trying a few more times until the role is up.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TarantoolNoSuchProcedureException(String errorMessage)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TarantoolNoSuchProcedureException
public TarantoolNoSuchProcedureException(String errorMessage)
-
-