Avoid try catch in numba

If Numba does not support try catch statements, What is the workaround? Suppose I am decoding a sequence of json objects, for json_str in stream: obj = json.loads(json_str) Which may somet...