# File lib/tapkit/control/validation.rb, line 32
                def exception_with_key_and_object( key, object )
                        exceptions.each do |ex|
                                if (ex.key == key) and (ex.object == object) then
                                        return ex
                                end
                        end
                        nil
                end