Sha256: 40a4ed4da511f100076f7ea1c7aa448960298a0576944158b1bffc38e946b26a
Contents?: true
Size: 396 Bytes
Versions: 44
Compression:
Stored size: 396 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
44 entries across 44 versions & 1 rubygems