Sha256: bbafe13b52c9fc9a89484a0bdc4e24b7bc787126822a2124bed881c3d21f917f
Contents?: true
Size: 397 Bytes
Versions: 22
Compression:
Stored size: 397 Bytes
Contents
# Raised when an invalid operation is attempted on a # [Fiber](https://ruby-doc.org/core-2.6.3/Fiber.html), in particular when # attempting to call/resume a dead fiber, attempting to yield from the # root fiber, or calling a fiber across threads. # # ```ruby # fiber = Fiber.new{} # fiber.resume #=> nil # fiber.resume #=> FiberError: dead fiber called # ``` class FiberError < StandardError end
Version data entries
22 entries across 22 versions & 2 rubygems