class OceanDynamo::AttributeAssignmentError

Attributes

attribute[R]
exception[R]

Public Class Methods

new(message, exception, attribute) click to toggle source
Calls superclass method
# File lib/ocean-dynamo/exceptions.rb, line 53
def initialize(message, exception, attribute)
  super(message)
  @exception = exception
  @attribute = attribute
end