Exception: ModelTimeline::ConfigurationError
- Inherits:
-
StandardError
- Object
- StandardError
- ModelTimeline::ConfigurationError
- Defined in:
- lib/model_timeline/configuration_error.rb
Overview
Error raised when there’s an issue with ModelTimeline configuration. This error is typically raised when attempting to define multiple timeline configurations for the same model and timeline entry class combination.
Instance Method Summary collapse
-
#initialize(message = 'Multiple definitions of the same configuration found. ' \ 'Please ensure that each configuration is unique.') ⇒ ModelTimeline::ConfigurationError
constructor
Initialize a new ConfigurationError.
Constructor Details
#initialize(message = 'Multiple definitions of the same configuration found. ' \ 'Please ensure that each configuration is unique.') ⇒ ModelTimeline::ConfigurationError
Initialize a new ConfigurationError
19 20 21 22 |
# File 'lib/model_timeline/configuration_error.rb', line 19 def initialize( = 'Multiple definitions of the same configuration found. ' \ 'Please ensure that each configuration is unique.') super end |