w90_error_type Derived Type

type, public :: w90_error_type


Components

Type Visibility Attributes Name Initial
integer, public :: code
character(len=128), public :: message

Source Code

  type w90_error_type
    integer :: code
    character(len=128) :: message
#ifdef W90DEV
  contains
    final :: untrapped_error
#endif
  end type w90_error_type