class Avro::SchemaValidator::ValidationError

Attributes

result[R]

Public Class Methods

new(result = Result.new) click to toggle source
Calls superclass method
   # File lib/avro/schema_validator.rb
52 def initialize(result = Result.new)
53   @result = result
54   super
55 end

Public Instance Methods

to_s() click to toggle source
   # File lib/avro/schema_validator.rb
57 def to_s
58   result.to_s
59 end