class Avro::IO::AvroTypeError
Raised when datum is not an example of schema
Public Class Methods
new(expected_schema, datum)
click to toggle source
Calls superclass method
# File lib/avro/io.rb 21 def initialize(expected_schema, datum) 22 super("The datum #{datum.inspect} is not an example of schema #{expected_schema}") 23 end