public subroutine json_clear_exceptions()
Arguments
None
Description
Clear exceptions in the JSON module.
Source Code
subroutine json_clear_exceptions()
implicit none
!clear the flag and message:
exception_thrown = .false.
err_message = ''
end subroutine json_clear_exceptions