io.tarantool.driver.exceptions.errors.ErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cartridge-driver Show documentation
Show all versions of cartridge-driver Show documentation
Tarantool Cartridge driver for Tarantool versions 1.10+ based on Netty framework
package io.tarantool.driver.exceptions.errors;
/**
* Error codes used to classify errors
* Tarantool error codes
*
* @author Oleg Kuznetsov
*/
enum ErrorCode {
NO_SUCH_PROCEDURE(33L), ACCESS_DENIED(42L), NO_CONNECTION(77L), TIMEOUT(78L);
private final Long code;
ErrorCode(Long code) {
this.code = code;
}
public Long getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy