1 # 2 # Error messages for the hdb library 3 # 4 # This might look like a com_err file, but is not 5 # 6 id "Id" 7 8 error_table hdb 9 10 prefix HDB_ERR 11 12 index 1 13 #error_code INUSE, "Entry already exists in database" 14 error_code UK_SERROR, "Database store error" 15 error_code UK_RERROR, "Database read error" 16 error_code NOENTRY, "No such entry in the database" 17 error_code DB_INUSE, "Database is locked or in use--try again later" 18 error_code DB_CHANGED, "Database was modified during read" 19 error_code RECURSIVELOCK, "Attempt to lock database twice" 20 error_code NOTLOCKED, "Attempt to unlock database when not locked" 21 error_code BADLOCKMODE, "Invalid kdb lock mode" 22 error_code CANT_LOCK_DB, "Insufficient access to lock database" 23 error_code EXISTS, "Entry already exists in database" 24 error_code BADVERSION, "Wrong database version" 25 error_code NO_MKEY, "No correct master key" 26 error_code MANDATORY_OPTION, "Entry contains unknown mandatory extension" 27 error_code NO_WRITE_SUPPORT, "HDB backend doesn't contain write support" 28 error_code NOT_FOUND_HERE, "The secret for this entry is not replicated to this database" 29 error_code MISUSE, "Incorrect use of the API" 30 error_code KVNO_NOT_FOUND, "Entry key version number not found" 31 error_code WRONG_REALM, "The principal exists in another realm." 32 33 end 34