Sha256: 45d79337fcff921c20c369f4636c096f5a4ab28eeffbb0d229466d22e8793ac5

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

module Celluloid
  class Error < StandardError; end
  class Interruption < RuntimeError; end
  class TimedOut < Celluloid::Interruption; end # Distinguished from `Timeout`
  class StillActive < Celluloid::Error; end
  class NotActive < Celluloid::Error; end
  class NotActorError < Celluloid::Error; end # Don't do Actor-like things outside Actor scope
  class DeadActorError < Celluloid::Error; end # Trying to do something to a dead actor
  class NotTaskError < Celluloid::Error; end # Asked to do task-related things outside a task
  class DeadTaskError < Celluloid::Error; end # Trying to resume a dead task
  class TaskTerminated < Celluloid::Interruption; end # Kill a running task after terminate
  class TaskTimeout < Celluloid::TimedOut; end # A timeout occurred before the given request could complete
  class ConditionError < Celluloid::Error; end
  class AbortError < Celluloid::Error # The sender made an error, not the current actor
    attr_reader :cause
    def initialize(cause)
      @cause = cause
      super "caused by #{cause.inspect}: #{cause}"
    end
  end
  class ThreadLeak < Celluloid::Error; end
  module Feature
    module Requires
      class RubiniusOrJRuby < Celluloid::Error; end
      class Rubinius < Celluloid::Error; end
      class JRuby < Celluloid::Error; end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
celluloid-0.18.0 lib/celluloid/exceptions.rb
celluloid-0.18.0.pre2 lib/celluloid/exceptions.rb