]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - src/ExitCodes.hs
Add a backend configuration option.
[dead/htsn-import.git] / src / ExitCodes.hs
1 -- | All exit codes that the program can return (excepting
2 -- ExitSuccess).
3 --
4 module ExitCodes (
5 exit_no_connection_string,
6 exit_no_xml_files )
7 where
8
9 -- | No connection string was given on the command line or in the
10 -- config file.
11 exit_no_connection_string :: Int
12 exit_no_connection_string = 1
13
14 -- | No XML files were given on the command line.
15 exit_no_xml_files :: Int
16 exit_no_xml_files = 2
17