Exception: ActiveCampaign::DependencyMissing

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

Overview

Raised when a dependency couldn't be loaded

Author:

Instance Method Summary collapse

Constructor Details

#initialize(endpoint) ⇒ DependencyMissing

Returns a new instance of DependencyMissing.



10
11
12
13
# File 'lib/active_campaign/errors.rb', line 10

def initialize(endpoint)
  @endpoint = endpoint
  super("The endpoint :#{endpoint} couldn't be loaded")
end