springernature/macmillan-utils

View on GitHub
lib/macmillan/utils/settings/key_not_found.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Macmillan
  module Utils
    module Settings
      class KeyNotFound
        def initialize(lookup_key, backend, backend_key)
          @lookup_key  = lookup_key
          @backend     = backend
          @backend_key = backend_key
        end
      end
    end
  end
end