# frozen_string_literal: true require 'dry/plugins/error' module Dry module Plugins class Registry # Plug-in load error class LoadError < Error def initialize(name, registry) super "Plugin #{name} did not register itself correctly in #{registry}" end end end end end