]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/common/exit_codes.rb
Begin updating docs; remove two unused exit codes.
[mailshears.git] / lib / common / exit_codes.rb
index 8f70919fc457d5500a0d52c468419a7b2a4b5ca5..b7928a74eb4b7c61733623536a236f676742bf33 100644 (file)
@@ -1,7 +1,7 @@
 module ExitCodes
-
+  # Everything went better than expected.
   SUCCESS = 0
-  FILESYSTEM_ERROR = 1
-  DATABASE_ERROR = 2
 
+  # The command-line arguments were not what we expected.
+  BAD_COMMAND_LINE = 1
 end