summaryrefslogtreecommitdiff
path: root/py/objexcept.c
diff options
context:
space:
mode:
authorMatt Land <mland@sparefoot.com>2018-05-16 17:55:43 -0400
committerMatt Land <mland@sparefoot.com>2018-05-16 17:55:43 -0400
commit0511becd55f3dd79e44d3355338aa7fd08ec9043 (patch)
tree2cf7c73ec40615bac84f1b49e7ae2b765d1b9211 /py/objexcept.c
parent0a185c4d2d6cfd148b35c23c3f8e23883d82befe (diff)
parent6a8db03ade64bd2fdf5c7b5df54ad113a062e005 (diff)
Merge branch 'master' of https://github.com/adafruit/circuitpython into feature-i2c-gemma
Diffstat (limited to 'py/objexcept.c')
-rw-r--r--py/objexcept.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objexcept.c b/py/objexcept.c
index 9ef2f2e34..a800a13fb 100644
--- a/py/objexcept.c
+++ b/py/objexcept.c
@@ -249,6 +249,7 @@ const mp_obj_type_t mp_type_ ## exc_name = { \
// http://docs.python.org/3/library/exceptions.html
MP_DEFINE_EXCEPTION(SystemExit, BaseException)
MP_DEFINE_EXCEPTION(KeyboardInterrupt, BaseException)
+MP_DEFINE_EXCEPTION(ReloadException, BaseException)
MP_DEFINE_EXCEPTION(GeneratorExit, BaseException)
MP_DEFINE_EXCEPTION(Exception, BaseException)
#if MICROPY_PY_ASYNC_AWAIT