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