Skip to content

abort

Syntax

abort()

Description

This action causes FRED to terminate immediately with an error message.

Examples

If an agent under 18 enters state B below, then FRED terminates with an error indicating that a specific agent has invoked abort.

condition FOO {
    ...
    state B {
        if (age() < 18) then abort()
        ...
    }
}

See Also