class Empathy::ThreadError

This is never thrown but can be used to rescue both ThreadError and FiberError

Constants

RUBY_ThreadError

Public Class Methods

===(other) click to toggle source
Calls superclass method
# File lib/empathy.rb, line 50
def self.===(other)
  super || ::FiberError === other || RUBY_ThreadError === other
end