machinio/solrb

View on GitHub
lib/solr/errors/could_not_detect_endpoint_in_url.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Solr
  module Errors
    class CouldNotDetectEndpointInUrl < StandardError
      MESSAGE = '
        TODO: Add message

      '.freeze

      def initialize
        super(MESSAGE)
      end
    end
  end
end