X-Git-Url: http://gitweb.michael.orlitzky.com/?p=email-validator.git;a=blobdiff_plain;f=src%2FExitCodes.hs;fp=src%2FExitCodes.hs;h=0000000000000000000000000000000000000000;hp=15a1160e9b432eb02dfb2615414bdc86c2dbe0bf;hb=2e8aab2a69a8b9887e4f037115b80a2063d3a6b7;hpb=26d9ffe7a637c826da3b1b330843173205d79964 diff --git a/src/ExitCodes.hs b/src/ExitCodes.hs deleted file mode 100644 index 15a1160..0000000 --- a/src/ExitCodes.hs +++ /dev/null @@ -1,16 +0,0 @@ --- | All exit codes that the program can return (excepting --- ExitSuccess). There's only one, since the program will try and --- fail forever upon errors. -module ExitCodes ( - exit_args_parse_failed, - exit_input_file_doesnt_exist ) -where - --- | Indicates that the command-line arguments could not be parsed. -exit_args_parse_failed :: Int -exit_args_parse_failed = 1 - --- | Indicates that the input file given on the command-line does not --- exist. -exit_input_file_doesnt_exist :: Int -exit_input_file_doesnt_exist = 2