class Iglu::Registries::ResolverError

Attributes

lookups[R]
schema_key[R]

Public Class Methods

new(lookups, schema_key) click to toggle source
Calls superclass method
# File lib/iglu-client/registries.rb, line 120
def initialize(lookups, schema_key)
  @lookups = lookups
  @schema_key = schema_key
  message = "Schema [#{schema_key.as_uri}] was not found with in [#{lookups.length}] registries with following attempts: [#{lookups.map { |lookup| lookup.to_s }.join('; ')}]"
  super(message)
end