class ROM::AdapterNotPresentError

Exception raised when a component is configured with an adapter that's not loaded

Public Class Methods

new(adapter, component) click to toggle source

@api private

Calls superclass method
# File lib/rom/constants.rb, line 14
def initialize(adapter, component)
  super(
    "Failed to find #{component} class for #{adapter} adapter. " \
    'Make sure ROM setup was started and the adapter identifier is correct.'
  )
end