add-process-warning#

The add-process-warning step adds a warning message to the executing process

Format#

add-process-warning step "foo" is
    -- a string in the body defines the warning; required
    "Warning: process partially successful"
on success
    finish
end

Example#

start is

    start A

end



add-process-warning step A is

    "warning"

on success

    finish

end

Parent topic: Generic process steps