-- | All exit codes that the program can return (excepting -- ExitSuccess). -- module ExitCodes ( exit_no_connection_string, exit_no_xml_files ) where -- | No connection string was given on the command line or in the -- config file. exit_no_connection_string :: Int exit_no_connection_string = 1 -- | No XML files were given on the command line. exit_no_xml_files :: Int exit_no_xml_files = 2