14 lines
249 B
C
14 lines
249 B
C
#ifndef PARSER_ERROR_H
|
|
#define PARSER_ERROR_H
|
|
|
|
#define ERR_IS_NOT 1
|
|
#define ERR_NOT_LIVING 2
|
|
#define ERR_NOT_ACCESSIBLE 3
|
|
#define ERR_AMBIG 4
|
|
#define ERR_ORDINAL 5
|
|
#define ERR_ALLOCATED 6
|
|
#define ERR_THERE_IS_NO 7
|
|
#define ERR_BAD_MULTIPLE 8
|
|
|
|
#endif
|