Exception: Ractor::RemoteError
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
Ractor::Error
|
Defined in: | ractor.c, ractor.c, ractor.rb |
Overview
Raised on attempt to #take if there was an uncaught exception in the ::Ractor
. Its cause
will contain the original exception, and #ractor is the original ractor it was raised in.
r = Ractor.new { raise "Something weird happened" }
begin
r.take
rescue => e
p e # => #<Ractor::RemoteError: thrown by remote Ractor.>
p e.ractor == r # => true
p e.cause # => #<RuntimeError: Something weird happened>
end
Class Attribute Summary
::Exception
- Inherited
.to_tty? | Returns |
Class Method Summary
::Exception
- Inherited
.exception | Returns an exception object of the same class as |
.new | Returns a new exception object. |
Instance Attribute Summary
- #ractor readonly
Instance Method Summary
::Exception
- Inherited
#== | Returns whether |
#backtrace | Returns a backtrace value for |
#backtrace_locations | Returns a backtrace value for |
#cause | Returns the previous value of global variable |
#detailed_message | Returns the message string with enhancements: |
#exception | Returns an exception object of the same class as |
#full_message | Returns an enhanced message string: |
#inspect | Returns a string representation of |
#message | Returns #to_s. |
#set_backtrace | Sets the backtrace value for |
#to_s | Returns a string representation of |
Constructor Details
This class inherits a constructor from Exception
Instance Attribute Details
#ractor (readonly)
[ GitHub ]# File 'ractor.rb', line 734
attr_reader :ractor