Exception: JayAPI::Errors::ConfigurationError
- Defined in:
- lib/jay_api/errors/configuration_error.rb
Overview
An error to be raised when there is an issue with the configuration of one of Jay’s modules.
Instance Attribute Summary collapse
-
#source_string ⇒ Object
readonly
Returns the value of attribute source_string.
Instance Method Summary collapse
-
#initialize(message, source_string = nil) ⇒ ConfigurationError
constructor
Creates a new instance of the class.
Constructor Details
#initialize(message, source_string = nil) ⇒ ConfigurationError
Creates a new instance of the class.
16 17 18 19 |
# File 'lib/jay_api/errors/configuration_error.rb', line 16 def initialize(, source_string = nil) @source_string = source_string super() end |
Instance Attribute Details
#source_string ⇒ Object (readonly)
Returns the value of attribute source_string.
10 11 12 |
# File 'lib/jay_api/errors/configuration_error.rb', line 10 def source_string @source_string end |