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.



225
226
227
228
229
# File 'lib/active_ldap/base.rb', line 225

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

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



224
225
226
# File 'lib/active_ldap/base.rb', line 224

def attribute
  @attribute
end

#valueObject (readonly)

Returns the value of attribute value.



224
225
226
# File 'lib/active_ldap/base.rb', line 224

def value
  @value
end