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