The breaking changes in jiffy 1.0.0 appear to be that calls to throw/1 has been replaced with calls to error/1 at a few locations. However, at the few places in enenra where try/catch syntax is used, the catch clause does not match on the error type and hence they should still be catching errors even when throw/1 has been replaced with calls to error/1 in jiffy.
The breaking changes in jiffy 1.0.0 appear to be that calls to
throw/1
has been replaced with calls toerror/1
at a few locations. However, at the few places in enenra where try/catch syntax is used, the catch clause does not match on the error type and hence they should still be catching errors even whenthrow/1
has been replaced with calls toerror/1
in jiffy.