Exception: ActiveSambaLdap::InvalidConfigurationFormatError
- Inherits:
-
Error
- Object
- StandardError
- Error
- ActiveSambaLdap::InvalidConfigurationFormatError
- Defined in:
- lib/active_samba_ldap/base.rb
Instance Attribute Summary collapse
-
#detail ⇒ Object
readonly
Returns the value of attribute detail.
-
#file ⇒ Object
readonly
Returns the value of attribute file.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
-
#initialize(file, location, detail) ⇒ InvalidConfigurationFormatError
constructor
A new instance of InvalidConfigurationFormatError.
Methods included from GetTextSupport
Constructor Details
#initialize(file, location, detail) ⇒ InvalidConfigurationFormatError
Returns a new instance of InvalidConfigurationFormatError.
87 88 89 90 91 92 93 |
# File 'lib/active_samba_ldap/base.rb', line 87 def initialize(file, location, detail) @file = file @location = location @detail = detail format = _("found invalid configuration format at %s:%s: %s") super(format % [file, location, detail]) end |
Instance Attribute Details
#detail ⇒ Object (readonly)
Returns the value of attribute detail.
86 87 88 |
# File 'lib/active_samba_ldap/base.rb', line 86 def detail @detail end |
#file ⇒ Object (readonly)
Returns the value of attribute file.
86 87 88 |
# File 'lib/active_samba_ldap/base.rb', line 86 def file @file end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
86 87 88 |
# File 'lib/active_samba_ldap/base.rb', line 86 def location @location end |