json_file_clear_exceptions Subroutine

private pure subroutine json_file_clear_exceptions(me)

Clear exceptions in the class.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
class(json_file), intent(inout) :: me

Calls

proc~~json_file_clear_exceptions~~CallsGraph proc~json_file_clear_exceptions json_file_module::json_file%json_file_clear_exceptions proc~json_clear_exceptions json_value_module::json_core%json_clear_exceptions proc~json_file_clear_exceptions->proc~json_clear_exceptions

Source Code

    pure subroutine json_file_clear_exceptions(me)

    implicit none

    class(json_file),intent(inout) :: me

    call me%core%clear_exceptions()

    end subroutine json_file_clear_exceptions