class Trio::Blog::API::EmptyAttributeError

Attributes

attribute_name[R]

Public Class Methods

new(attribute_name) click to toggle source
Calls superclass method
# File lib/trio/blog/api/error/empty_attribute_error.rb, line 7
def initialize(attribute_name)
  super("Empty attribute value for '#{attribute_name}'")
  @attribute_name = attribute_name
end