X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Fexit_codes.rb;h=b7928a74eb4b7c61733623536a236f676742bf33;hp=a81067bc089e1b3a9f288f6a9fd8e5e7f94a6fd5;hb=aebdf12adce2766e2957f88916fcae6374d4eb4b;hpb=3763f510274a2ec7ce894122dc26d1ded6055cfc diff --git a/lib/common/exit_codes.rb b/lib/common/exit_codes.rb index a81067b..b7928a7 100644 --- a/lib/common/exit_codes.rb +++ b/lib/common/exit_codes.rb @@ -1,6 +1,7 @@ module ExitCodes + # Everything went better than expected. SUCCESS = 0 - FILESYSTEM_ERROR = 1 - DATABASE_ERROR = 2 - BAD_COMMAND_LINE = 3 + + # The command-line arguments were not what we expected. + BAD_COMMAND_LINE = 1 end