Exception: H8::TimeoutError

Inherits:
JsError show all
Defined in:
lib/h8/errors.rb,
ext/h8/main.cpp

Overview

Script execution is timed out (see H8::Context#eval timeout parameter)

Instance Attribute Summary

Attributes inherited from JsError

#javascript_error, #origin_column, #origin_line, #origin_name

Instance Method Summary collapse

Methods inherited from JsError

#javascript_backtrace, #message, #name, #to_s

Constructor Details

#initialize(message) ⇒ TimeoutError

Returns a new instance of TimeoutError.



55
56
57
58
59
# File 'lib/h8/errors.rb', line 55

def initialize message
  super
  @message = message
  @source  = nil
end