Exception: Script::Layers::Domain::Errors::ScriptNotFoundError
- Inherits:
-
ScriptProjectError
- Object
- StandardError
- ScriptProjectError
- Script::Layers::Domain::Errors::ScriptNotFoundError
- Defined in:
- lib/project_types/script/layers/domain/errors.rb
Instance Attribute Summary collapse
-
#extension_point_type ⇒ Object
readonly
Returns the value of attribute extension_point_type.
-
#script_name ⇒ Object
readonly
Returns the value of attribute script_name.
Instance Method Summary collapse
-
#initialize(extension_point_type, script_name) ⇒ ScriptNotFoundError
constructor
A new instance of ScriptNotFoundError.
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_type ⇒ Object (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_name ⇒ Object (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 |