public static enum KeeperException.Code extends Enum<KeeperException.Code> implements KeeperException.CodeDeprecated
| Enum Constant and Description | 
|---|
| APIERRORAPI errors. | 
| AUTHFAILEDClient authentication failed | 
| BADARGUMENTSInvalid arguments | 
| BADVERSIONVersion conflict
            In case of reconfiguration: reconfig requested from config version X but last seen config has a different version Y | 
| CONNECTIONLOSSConnection to the server has been lost | 
| DATAINCONSISTENCYA data inconsistency was found | 
| EPHEMERALONLOCALSESSIONAttempt to create ephemeral node on a local session | 
| INVALIDACLInvalid ACL specified | 
| INVALIDCALLBACKInvalid callback specified | 
| MARSHALLINGERRORError while marshalling or unmarshalling data | 
| NEWCONFIGNOQUORUMNo quorum of new config is connected and up-to-date with the leader of last commmitted config - try 
  invoking reconfiguration after new servers are connected and synced | 
| NOAUTHNot authenticated | 
| NOCHILDRENFOREPHEMERALSEphemeral nodes may not have children | 
| NODEEXISTSThe node already exists | 
| NONODENode does not exist | 
| NOTEMPTYThe node has children | 
| NOTREADONLYState-changing request is passed to read-only server | 
| NOWATCHERAttempts to remove a non-existing watcher | 
| OKEverything is OK | 
| OPERATIONTIMEOUTOperation timeout | 
| RECONFIGDISABLEDAttempts to perform a reconfiguration operation when reconfiguration feature is disabled. | 
| RECONFIGINPROGRESSAnother reconfiguration is in progress -- concurrent reconfigs not supported (yet) | 
| RUNTIMEINCONSISTENCYA runtime inconsistency was found | 
| SESSIONEXPIREDThe session has been expired by the server | 
| SESSIONMOVEDSession moved to another server, so operation is ignored | 
| SYSTEMERRORSystem and server-side errors. | 
| UNIMPLEMENTEDOperation is unimplemented | 
| UNKNOWNSESSIONUnknown session (internal server use only) | 
APIError, AuthFailed, BadArguments, BadVersion, ConnectionLoss, DataInconsistency, EphemeralOnLocalSession, InvalidACL, InvalidCallback, MarshallingError, NewConfigNoQuorum, NoAuth, NoChildrenForEphemerals, NodeExists, NoNode, NotEmpty, Ok, OperationTimeout, ReconfigInProgress, RuntimeInconsistency, SessionExpired, SystemError, Unimplemented, UnknownSession| Modifier and Type | Method and Description | 
|---|---|
| static KeeperException.Code | get(int code)Get the Code value for a particular integer error code | 
| int | intValue()Get the int value for a particular Code. | 
| static KeeperException.Code | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static KeeperException.Code[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KeeperException.Code OK
public static final KeeperException.Code SYSTEMERROR
APIERROR, are system errors.public static final KeeperException.Code RUNTIMEINCONSISTENCY
public static final KeeperException.Code DATAINCONSISTENCY
public static final KeeperException.Code CONNECTIONLOSS
public static final KeeperException.Code MARSHALLINGERROR
public static final KeeperException.Code UNIMPLEMENTED
public static final KeeperException.Code OPERATIONTIMEOUT
public static final KeeperException.Code BADARGUMENTS
public static final KeeperException.Code NEWCONFIGNOQUORUM
public static final KeeperException.Code RECONFIGINPROGRESS
public static final KeeperException.Code UNKNOWNSESSION
public static final KeeperException.Code APIERROR
SYSTEMERROR).public static final KeeperException.Code NONODE
public static final KeeperException.Code NOAUTH
public static final KeeperException.Code BADVERSION
public static final KeeperException.Code NOCHILDRENFOREPHEMERALS
public static final KeeperException.Code NODEEXISTS
public static final KeeperException.Code NOTEMPTY
public static final KeeperException.Code SESSIONEXPIRED
public static final KeeperException.Code INVALIDCALLBACK
public static final KeeperException.Code INVALIDACL
public static final KeeperException.Code AUTHFAILED
public static final KeeperException.Code SESSIONMOVED
public static final KeeperException.Code NOTREADONLY
public static final KeeperException.Code EPHEMERALONLOCALSESSION
public static final KeeperException.Code NOWATCHER
public static final KeeperException.Code RECONFIGDISABLED
public static KeeperException.Code[] values()
for (KeeperException.Code c : KeeperException.Code.values()) System.out.println(c);
public static KeeperException.Code valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int intValue()
public static KeeperException.Code get(int code)
code - int error codeCopyright © 2017 The Apache Software Foundation