# File lib/hammer_cli/exception_handler.rb, line 23
    def handle_exception(e, options={})
      @options = options
      handler = mappings.reverse.find { |m| e.class.respond_to?("<=""<=") ? e.class <= m[0] : false }
      return send(handler[1], e) if handler
      raise e
    end