Exception: CollectionErrors::ListError

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

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ ListError

Returns a new instance of ListError.



4
5
6
7
# File 'lib/errors/collection_errors.rb', line 4

def initialize(msg)
  msg = "ListError... " + msg
  super(msg)
end