Exception: Teaspoon::DependencyError

Inherits:
Error
  • Object
show all
Defined in:
lib/teaspoon/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ DependencyError

Returns a new instance of DependencyError.



118
119
120
121
# File 'lib/teaspoon/exceptions.rb', line 118

def initialize(msg = nil)
  msg ||= "Problem calling out to an external dependency."
  super(msg)
end