summaryrefslogtreecommitdiffstats
path: root/include/api/error.h
blob: da8093cd35c4d9a91b897e130a539c54b26b56b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _JOVE_ERROR_H
#define _JOVE_ERROR_H 1

enum
{
    KE_OK = 0,
    KE_BADOBJ,
    KE_BADFUNC,
    KE_BADTYPE,
    KE_BADMSG,
    KE_BADCALL,
    KE_FULL,
    KE_TOOSMALL,
    KE_OOB,
    KE_DNE,
    KE_ALIGN,
    KE_BADSIZE,
    KE_OCCUPIED
};

#endif