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