error_t Derived Type

type, public :: error_t

Data type defining an error


Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: message

Error message


Source Code

    type :: error_t

        !> Error message
        character(len=:), allocatable :: message

    end type error_t