class Avro::UnknownSchemaError

Attributes

type_name[R]

Public Class Methods

new(type) click to toggle source
Calls superclass method
    # File lib/avro/schema.rb
387 def initialize(type)
388   @type_name = type
389   super("#{type.inspect} is not a schema we know about.")
390 end