fortran-error-handler
fortran-error-handler copied to clipboard
Comprehensive error framework for applications requiring functional and robust error handling, utilising the power of modern object-oriented Fortran.
Results
1
fortran-error-handler issues
Sort by
recently updated
recently updated
newest added
Hello. I'm having problems with the examples ### Code: ``` program main use ErrorInstanceModule use ErrorCriteriaModule implicit none type(ErrorCriteria) :: eh type(ErrorInstance) :: error call eh%init() error = eh%limit(3,0,2) call...