# File lib/fog/softlayer/models/network/subnets.rb, line 22
        def get(id)
          if subnet = service.get_subnet(id).body
            new(subnet)
          end
        rescue Fog::Network::Softlayer::NotFound
          nil
        end