# File lib/fog/rackspace/models/queues/queues.rb, line 35
        def get(queue_name)
          #204 no content is returned on success.  That's why no data is passed
          # from the GET to the constructor.
          service.get_queue(queue_name)
          new({:name => queue_name})
        rescue Fog::Rackspace::Queues::NotFound
          nil
        end