diff --git a/src/NfcError.js b/src/NfcError.js index bb4c32b..e7f4b76 100644 --- a/src/NfcError.js +++ b/src/NfcError.js @@ -95,6 +95,8 @@ export function buildNfcExceptionIOS(error) { return new InvalidParameterLength(); } else if (code === NfcErrorIOS.errCodes.parameterOutOfBound) { return new ParameterOutOfBound(); + } else if (code === NfcErrorIOS.errCodes.radioDisabled) { + return new RadioDisabled(); } else if (code === NfcErrorIOS.errCodes.tagConnectionLost) { return new TagConnectionLost(); } else if (code === NfcErrorIOS.errCodes.retryExceeded) {