Exception: RailVerdict::ConfigurationError
- Defined in:
- lib/rail_verdict/errors.rb
Instance Attribute Summary collapse
-
#property_path ⇒ Object
readonly
Returns the value of attribute property_path.
-
#source_path ⇒ Object
readonly
Returns the value of attribute source_path.
Instance Method Summary collapse
-
#initialize(message, source_path: nil, property_path: nil) ⇒ ConfigurationError
constructor
A new instance of ConfigurationError.
Constructor Details
#initialize(message, source_path: nil, property_path: nil) ⇒ ConfigurationError
Returns a new instance of ConfigurationError.
11 12 13 14 15 |
# File 'lib/rail_verdict/errors.rb', line 11 def initialize(, source_path: nil, property_path: nil) super() @source_path = source_path @property_path = property_path end |
Instance Attribute Details
#property_path ⇒ Object (readonly)
Returns the value of attribute property_path.
9 10 11 |
# File 'lib/rail_verdict/errors.rb', line 9 def property_path @property_path end |
#source_path ⇒ Object (readonly)
Returns the value of attribute source_path.
9 10 11 |
# File 'lib/rail_verdict/errors.rb', line 9 def source_path @source_path end |