class Compote::ServiceNotFoundError
Attributes
config[R]
service[R]
Public Class Methods
new( service:, config: )
click to toggle source
Calls superclass method
# File lib/compote/error.rb, line 102 def initialize ( service:, config: ) @service = service @config = config message = "Error extending service: Service \"#{ service }\" not found in config \"#{ config.file_name }\"." super message end