class Avro::UnknownSchemaError
Attributes
type_name[R]
Public Class Methods
new(type)
click to toggle source
Calls superclass method
# File lib/avro/schema.rb 615 def initialize(type) 616 @type_name = type 617 super("#{type.inspect} is not a schema we know about.") 618 end