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