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
61 def initialize(result = Result.new)
62   @result = result
63   super
64 end

Public Instance Methods

to_s() click to toggle source
   # File lib/avro/schema_validator.rb
66 def to_s
67   result.to_s
68 end