Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Attributes
Name
Initial
character(len=ESMF_MAXSTR)
::
failMsg
character(len=ESMF_MAXSTR)
::
name
integer
::
rc
integer
::
result
Source Code
program ExceptionsUTest#include "ESMF.h"use ESMFuse ESMF_TestModimplicit noneinteger::rc,resultcharacter(len=ESMF_MAXSTR)::failMsg,nameresult=0call ESMF_TestStart(ESMF_SRCLINE,rc=rc)if(rc/=ESMF_SUCCESS)call ESMF_Finalize(endflag=ESMF_END_ABORT)!------------------------------------------------------------------------!------------------------------------------------------------------------! NEX_UTestcall esmc_bare_throw_test(result)! NEX_UTestcall esmc_deep_throw_test(result)! NEX_UTestcall esmc_class_no_destructor_throw_test(result)! NEX_UTestcall esmc_class_with_destructor_throw_test(result)call ESMF_TestEnd(ESMF_SRCLINE)end program ExceptionsUTest