Exception: Opal::GemNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
opal/lib/opal/errors.rb

Overview

raised if Gem not found in Opal#use_gem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(gem_name) ⇒ GemNotFound

Returns a new instance of GemNotFound

Parameters:

  • gem_name (String)

    name of gem that not found



8
9
10
11
# File 'opal/lib/opal/errors.rb', line 8

def initialize(gem_name)
  @gem_name = gem_name
  super("can't find gem #{gem_name}")
end

Instance Attribute Details

#gem_nameObject (readonly)

name of gem that not found



5
6
7
# File 'opal/lib/opal/errors.rb', line 5

def gem_name
  @gem_name
end