Exception: Fixtury::Errors::CircularDependencyError

Inherits:
Base
  • Object
show all
Defined in:
lib/fixtury/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ CircularDependencyError

Returns a new instance of CircularDependencyError.



20
21
22
# File 'lib/fixtury/errors.rb', line 20

def initialize(name)
  super("One of the dependencies of #{name.inspect} is dependent on #{name.inspect}.")
end