class Celluloid::AbortError

The sender made an error, not the current actor

Attributes

cause[R]

Public Class Methods

new(cause) click to toggle source
Calls superclass method
# File lib/celluloid/actor.rb, line 17
def initialize(cause)
  @cause = cause
  super "caused by #{cause.inspect}: #{cause.to_s}"
end