]> gitweb.michael.orlitzky.com - hath.git/blob - src/ExitCodes.hs
Add more Haddock comments.
[hath.git] / src / ExitCodes.hs
1 -- | Some exit codes, used in the ExitFailure constructor.
2 module ExitCodes
3 where
4
5 -- | One of the CIDRs is invalid (malformed, not a CIDR at all, etc).
6 exit_invalid_cidr :: Int
7 exit_invalid_cidr = 1
8
9 -- | We were unable to parse the command-line arguments.
10 exit_args_parse_failed :: Int
11 exit_args_parse_failed = 2