Exception: Arfi::Errors::AdapterNotSupported

Inherits:
StandardError
  • Object
show all
Defined in:
lib/arfi/errors.rb

Overview

Raised when the configured/selected adapter is not supported by ARFI.

Instance Method Summary collapse

Constructor Details

#initialize(message = 'Adapter not supported') ⇒ void

Initialize a new AdapterNotSupported error with an optional custom message.

Parameters:

  • message (String) (defaults to: 'Adapter not supported')

    Error message



36
37
38
39
# File 'lib/arfi/errors.rb', line 36

def initialize(message = 'Adapter not supported')
  @message = message
  super
end