]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - ExitCodes.hs
acb725274a993fe7c882bc5dda329c8e0c084f8b
[dead/htsn-import.git] / ExitCodes.hs
1 -- | All exit codes that the program can return (excepting
2 -- ExitSuccess).
3 --
4 module ExitCodes (
5 exit_no_xml_files )
6 where
7
8 -- | No XML files were given on the command line.
9 exit_no_xml_files :: Int
10 exit_no_xml_files = 1
11