diff options
Diffstat (limited to 'robot/errcatch.c')
-rw-r--r-- | robot/errcatch.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/robot/errcatch.c b/robot/errcatch.c new file mode 100644 index 0000000..5b42bb4 --- /dev/null +++ b/robot/errcatch.c @@ -0,0 +1,7 @@ +#include "errcatch.h" + +void w2_errcatch_main() {} + +void w2_errcatch_throw_msg(enum w2_e_errorcodes code, uint16_t length, const char *message) {} + +void w2_errcatch_throw(enum w2_e_errorcodes code) { w2_errcatch_throw_msg(code, 0, ""); } |