xref: /haiku/headers/os/translation/TranslationErrors.h (revision 893988af824e65e49e55f517b157db8386e8002b)
1 /********************************************************************************
2 /
3 /      File:           TranslationErrors.h
4 /
5 /      Description:    Error codes for the Translation Kit
6 /
7 /      Copyright 1998, Be Incorporated, All Rights Reserved.
8 /      Copyright 1995-1997, Jon Watte
9 /
10 ********************************************************************************/
11 
12 #if !defined(_TRANSLATION_ERRORS_H)
13 #define _TRANSLATION_ERRORS_H
14 
15 #include <Errors.h>
16 
17 
18 enum B_TRANSLATION_ERROR {
19 	B_TRANSLATION_BASE_ERROR = B_TRANSLATION_ERROR_BASE,
20 	B_NO_TRANSLATOR = B_TRANSLATION_BASE_ERROR,	/*	no translator exists for data	*/
21 	B_ILLEGAL_DATA,	/*	data is not what it said it was	*/
22 /* aliases */
23 	B_NOT_INITIALIZED = B_NO_INIT
24 };
25 
26 
27 #endif /* _TRANSLATION_ERRORS_H */
28