]> gitweb.michael.orlitzky.com - email-validator.git/blob - src/ExitCodes.hs
a48980f074d4cfb2c447703476daacc4fbfe977d
[email-validator.git] / src / ExitCodes.hs
1 -- | All exit codes that the program can return (excepting
2 -- ExitSuccess). There's only one, since the program will try and
3 -- fail forever upon errors.
4 module ExitCodes
5 where
6
7 -- |Indicates that the command-line arguments could not be parsed.
8 exit_args_parse_failed :: Int
9 exit_args_parse_failed = 1
10
11 exit_input_file_doesnt_exist :: Int
12 exit_input_file_doesnt_exist = 2