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
22 def initialize(expected_schema, datum)
23   super("The datum #{datum.inspect} is not an example of schema #{expected_schema}")
24 end