Exception: Inferno::Exceptions::DuplicateEntityIdException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/inferno/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(id) ⇒ DuplicateEntityIdException

Returns a new instance of DuplicateEntityIdException.



124
125
126
# File 'lib/inferno/exceptions.rb', line 124

def initialize(id)
  super("ID '#{id}' already exists. Ensure the uniqueness of the IDs.")
end