Exception: ActiveSambaLdap::InvalidConfigurationValueError
- Defined in:
- lib/active_samba_ldap/base.rb
Instance Attribute Summary collapse
-
#detail ⇒ Object
readonly
Returns the value of attribute detail.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name, value, detail) ⇒ InvalidConfigurationValueError
constructor
A new instance of InvalidConfigurationValueError.
Methods included from GetTextSupport
Constructor Details
#initialize(name, value, detail) ⇒ InvalidConfigurationValueError
Returns a new instance of InvalidConfigurationValueError.
98 99 100 101 102 103 104 |
# File 'lib/active_samba_ldap/base.rb', line 98 def initialize(name, value, detail) @name = name @value = value @detail = detail format = _("the value of %s '%s' is invalid: %s") super(format % [name, value.inspect, detail]) end |
Instance Attribute Details
#detail ⇒ Object (readonly)
Returns the value of attribute detail.
97 98 99 |
# File 'lib/active_samba_ldap/base.rb', line 97 def detail @detail end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
97 98 99 |
# File 'lib/active_samba_ldap/base.rb', line 97 def name @name end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
97 98 99 |
# File 'lib/active_samba_ldap/base.rb', line 97 def value @value end |