wrap_json_throw_exception Subroutine

private subroutine wrap_json_throw_exception(msg)

Arguments

Type IntentOptional AttributesName
character(kind=CDK,len=*), intent(in) :: msg

Description

Alternate version of json_throw_exception, where "msg" is kind=CDK.

Calls

proc~~wrap_json_throw_exception~~CallsGraph proc~wrap_json_throw_exception wrap_json_throw_exception proc~json_throw_exception json_throw_exception proc~wrap_json_throw_exception->proc~json_throw_exception interface~to_unicode to_unicode proc~wrap_json_throw_exception->interface~to_unicode proc~to_uni to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec
Help

Source Code

    subroutine wrap_json_throw_exception(msg)

    implicit none

    character(kind=CDK,len=*),intent(in) :: msg    !the error message

    call json_throw_exception(to_unicode(msg))

    end subroutine wrap_json_throw_exception