class Blumquist::Errors::UnsupportedSchema

Public Class Methods

new(type) click to toggle source
Calls superclass method
# File lib/blumquist/errors/unsupported_schema.rb, line 4
def initialize(type)
  super("The top level object of the schema must be \"object\" (it is #{type.to_json})")
end