]> gitweb.michael.orlitzky.com - hath.git/blobdiff - src/ExitCodes.hs
Rewrite command-line parsing to use cmdargs.
[hath.git] / src / ExitCodes.hs
index ef5d73f06a57398fd238bee92ed8a28f5ee46fd1..62a561d3264114a59e68be9bfd1db81ed18658c8 100644 (file)
@@ -1,14 +1,8 @@
 -- | Some exit codes, used in the ExitFailure constructor.
 module ExitCodes (
-  exit_args_parse_failed,
-  exit_invalid_cidr
-  )
+  exit_invalid_cidr )
 where
 
 -- | One of the CIDRs is invalid (malformed, not a CIDR at all, etc).
 exit_invalid_cidr :: Int
 exit_invalid_cidr = 1
-
--- | We were unable to parse the command-line arguments.
-exit_args_parse_failed :: Int
-exit_args_parse_failed = 2