]> 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 f632b25982cb26d17f28060862f3ee08be5a4d5e..b7928a74eb4b7c61733623536a236f676742bf33 100644 (file)
@@ -1,7 +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