|
subroutine | extract_error_message_c (ERROR_MESSAGE, ERR, ERROR,) |
| Extracts the error message from a CMISS error string and returns it as a character array. More...
|
|
subroutine | extract_error_message_vs (ERROR_MESSAGE, ERR, ERROR,) |
| Extracts the error message from a CMISS error string and returns it as a varying string. More...
|
|
Definition at line 215 of file base_routines.f90.
subroutine base_routines::extract_error_message::extract_error_message_c |
( |
character(len=*), intent(out) |
ERROR_MESSAGE, |
|
|
integer(intg), intent(in) |
ERR, |
|
|
type(varying_string), intent(in) |
ERROR |
|
) |
| |
|
private |
Extracts the error message from a CMISS error string and returns it as a character array.
- Parameters
-
[out] | error_message | The extracted error message |
[in] | err | The error code |
[in] | error | The error string |
Definition at line 676 of file base_routines.f90.
subroutine base_routines::extract_error_message::extract_error_message_vs |
( |
type(varying_string), intent(out) |
ERROR_MESSAGE, |
|
|
integer(intg), intent(in) |
ERR, |
|
|
type(varying_string), intent(in) |
ERROR |
|
) |
| |
|
private |
Extracts the error message from a CMISS error string and returns it as a varying string.
- Parameters
-
[out] | error_message | The extracted error message |
[in] | err | The error code |
[in] | error | The error string |
Definition at line 656 of file base_routines.f90.