Better handling and tracing of Index Errors between C and Cython

This commit is contained in:
Celine Mercier
2017-07-05 14:45:43 +02:00
parent f6631f3857
commit 1d2996c6c0
12 changed files with 236 additions and 147 deletions

View File

@ -118,6 +118,11 @@ extern int obi_errno;
*/
#define OBI_ALIGN_ERROR (29) /** Error while aligning sequences
*/
#define OBI_LINE_IDX_ERROR (30) /** Error setting or getting a value at a forbidden line index (greater than the line count of the view or the column)
*/
#define OBI_ELT_IDX_ERROR (31) /** Error setting or getting a value at a non-existent element index or with a non-existent element name
*/
/**@}*/
#endif /* OBIERRNO_H_ */