Abort
- abort
abort is the combination of printing to the STDERR and calling exit with an exit code.
abort("Something bad happened")
abort("Something bad happened", 3)
abortprints a message to STDERR and exit with exit code 1 (see$?or%ERROR_LEVEL%)- Optionally we can supply the exit code as well.