Exception: Concurrent::Agent::Error
- Inherits:
- 
      StandardError
      
        - Object
- StandardError
- Concurrent::Agent::Error
 
- Defined in:
- lib/concurrent-ruby/concurrent/agent.rb
Overview
Raised during action processing or any other time in an Agent's lifecycle.
Direct Known Subclasses
Instance Method Summary collapse
- 
  
    
      #initialize(message = nil)  ⇒ Error 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Error. 
Constructor Details
#initialize(message = nil) ⇒ Error
Returns a new instance of Error.
| 168 169 170 171 | # File 'lib/concurrent-ruby/concurrent/agent.rb', line 168 def initialize( = nil) ||= 'agent must be restarted before jobs can post' super() end |