Exception: ActiveLdap::AttributeValueInvalid

Inherits:
Error
  • Object
show all
Defined in:
lib/active_ldap/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GetTextSupport

included

Constructor Details

#initialize(attribute, value, message) ⇒ AttributeValueInvalid

Returns a new instance of AttributeValueInvalid.



256
257
258
259
260
# File 'lib/active_ldap/base.rb', line 256

def initialize(attribute, value, message)
  @attribute = attribute
  @value = value
  super(message)
end

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



255
256
257
# File 'lib/active_ldap/base.rb', line 255

def attribute
  @attribute
end

#valueObject (readonly)

Returns the value of attribute value.



255
256
257
# File 'lib/active_ldap/base.rb', line 255

def value
  @value
end