1 -- |All exit codes that the program can return (excepting
2 -- ExitSuccess). There's only one, since the program will try and fail
3 -- forever upon errors.
7 -- |Indicates that the command-line arguments could not be parsed.
8 exit_args_parse_failed :: Int
9 exit_args_parse_failed = 1
11 -- |Indicates that the command-line arguments could not be parsed.
12 exit_config_parse_failed :: Int
13 exit_config_parse_failed = 2