# Error --- ## Object Definitions ```c typedef union : uin16_t { ERROR_C = 1 << 0, ERROR_TOKEN = 1 << 1, ERROR_TYPE = 1 << 2 } kpl_error_flags; typedef struct _kpl_error { uint16_t line, flags; uin32_t class_options; struct _kpl_error *stack; union { struct { char *file, char *function; } c; kpl_token token; kpl_type *type; } source; kpl_class class; } kpl_error; ```