class CollectionErrors::ListError

Public Class Methods

new(msg) click to toggle source
Calls superclass method
# File lib/errors/collection_errors.rb, line 4
def initialize(msg)
  msg = "ListError... " + msg
  super(msg)
end