Exception: UncaughtThrowError

Inherits:
ArgumentError show all
Defined in:
opal/opal/corelib/error.rb,
opal/opal/corelib/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Exception

#backtrace, #backtrace_locations, #cause, exception, #exception, #full_message, #inspect, #message, new, #set_backtrace, #to_s

Constructor Details

#initialize(tag, value = nil) ⇒ UncaughtThrowError

Returns a new instance of UncaughtThrowError.



248
249
250
251
252
253
# File 'opal/opal/corelib/error.rb', line 248

def initialize(tag, value = nil)
  @tag = tag
  @value = value

  super("uncaught throw #{@tag.inspect}")
end

Instance Attribute Details

#tagObject (readonly)

Returns the value of attribute tag.



246
247
248
# File 'opal/opal/corelib/error.rb', line 246

def tag
  @tag
end

#valueObject (readonly)

Returns the value of attribute value.



246
247
248
# File 'opal/opal/corelib/error.rb', line 246

def value
  @value
end