Class: ScriptCore::EngineUnknownExtError
- Inherits:
-
EngineInternalError
- Object
- ScriptCore::EngineUnknownExtError
- Defined in:
- lib/script_core/engine_error.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type:) ⇒ EngineUnknownExtError
constructor
A new instance of EngineUnknownExtError.
Constructor Details
#initialize(type:) ⇒ EngineUnknownExtError
Returns a new instance of EngineUnknownExtError.
82 83 84 85 |
# File 'lib/script_core/engine_error.rb', line 82 def initialize(type:) @type = type super("unknown ext #{type}") end |
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
80 81 82 |
# File 'lib/script_core/engine_error.rb', line 80 def type @type end |