# File lib/aeolus_cli/command/config_parser.rb, line 57
      def parse(opts)
        begin
          opts.parse(@args)
        rescue OptionParser::ParseError => e
          puts "Warning, " + e.message + "\n\tSee `aeolus-image " + @command + " -h` for usage information."
          exit(1)
        rescue
          puts "An error occurred: See `aeolus-image " + @command + " -h` for usage information."
          exit(1)
        end
      end