Exception: Script::Layers::Domain::Errors::ScriptNotFoundError

Inherits:
ScriptProjectError
  • Object
show all
Defined in:
lib/project_types/script/layers/domain/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(extension_point_type, script_name) ⇒ ScriptNotFoundError

Returns a new instance of ScriptNotFoundError.



17
18
19
20
21
# File 'lib/project_types/script/layers/domain/errors.rb', line 17

def initialize(extension_point_type, script_name)
  super()
  @script_name = script_name
  @extension_point_type = extension_point_type
end

Instance Attribute Details

#extension_point_typeObject (readonly)

Returns the value of attribute extension_point_type.



16
17
18
# File 'lib/project_types/script/layers/domain/errors.rb', line 16

def extension_point_type
  @extension_point_type
end

#script_nameObject (readonly)

Returns the value of attribute script_name.



16
17
18
# File 'lib/project_types/script/layers/domain/errors.rb', line 16

def script_name
  @script_name
end