Class: ScriptCore::EngineUnknownExtError

Inherits:
EngineInternalError
  • Object
show all
Defined in:
lib/script_core/engine_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#typeObject (readonly)

Returns the value of attribute type.



80
81
82
# File 'lib/script_core/engine_error.rb', line 80

def type
  @type
end