ActiveModel compliant error class
Add autovivification so that #[] always returns an array.
[Source]
# File lib/sequel/plugins/active_model.rb, line 24 24: def [](k) 25: fetch(k){self[k] = []} 26: end
[Validate]