class Contentful::EmptyFieldError

Raised when an undefined field is requested

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/contentful/error.rb, line 207
def initialize(name)
  super("The field '#{name}' is empty and unavailable in the response")
end