roboto.action_runtime.exit_codes#

Module Contents#

class roboto.action_runtime.exit_codes.ExitCode#

Bases: enum.IntEnum

Defined exit codes used by the action runtime. Exception codes are adapted from /usr/include/sysexits.h

ConfigurationError = 78#

From /usr/include/sysexits.h: > EX_CONFIG 78 /* configuration error */

InternalError = 70#

From /usr/include/sysexits.h: > EX_SOFTWARE – An internal software error has been detected. > This should be limited to non-operating system related > errors as possible.

Success = 0#
UsageError = 64#

From /usr/include/sysexits.h: > EX_USAGE – The command was used incorrectly, e.g., with > the wrong number of arguments, a bad flag, a bad > syntax in a parameter, or whatever.