Exception: ActiveLdap::EntryInvalid
- Defined in:
- lib/active_ldap/base.rb
Instance Attribute Summary collapse
-
#entry ⇒ Object
readonly
Returns the value of attribute entry.
Instance Method Summary collapse
-
#initialize(entry) ⇒ EntryInvalid
constructor
A new instance of EntryInvalid.
Methods included from GetTextSupport
Constructor Details
#initialize(entry) ⇒ EntryInvalid
Returns a new instance of EntryInvalid.
229 230 231 232 233 |
# File 'lib/active_ldap/base.rb', line 229 def initialize(entry) @entry = entry errors = @entry.errors..join(", ") super(errors) end |
Instance Attribute Details
#entry ⇒ Object (readonly)
Returns the value of attribute entry.
228 229 230 |
# File 'lib/active_ldap/base.rb', line 228 def entry @entry end |