Exception: DRb::DRbUnknownError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
           DRbError,
          RuntimeError | |
| Instance Chain: 
          self,
           DRbError,
          RuntimeError | |
| Inherits: | DRb::DRbError 
 | 
| Defined in: | lib/drb/drb.rb | 
Overview
An exception wrapping a DRbUnknown object
Class Method Summary
- 
    
      .new(unknown)  ⇒ DRbUnknownError 
    
    constructor
    Create a new DRbUnknownErrorfor theDRbUnknownobject #unknown
- ._load(s) Internal use only
Instance Attribute Summary
- 
    
      #unknown  
    
    readonly
    Get the wrapped DRbUnknownobject.
Instance Method Summary
- #_dump(lv) Internal use only
Constructor Details
    .new(unknown)  ⇒ DRbUnknownError 
  
Create a new DRbUnknownError for the DRbUnknown object #unknown
Class Method Details
._load(s)
    This method is for internal use only.
  
  [ GitHub ]
# File 'lib/drb/drb.rb', line 421
def self._load(s) # :nodoc: Marshal::load(s) end
Instance Attribute Details
#unknown (readonly)
Get the wrapped DRbUnknown object.
# File 'lib/drb/drb.rb', line 419
attr_reader :unknown
Instance Method Details
#_dump(lv)
    This method is for internal use only.
  
  [ GitHub ]
# File 'lib/drb/drb.rb', line 425
def _dump(lv) # :nodoc: Marshal::dump(@unknown) end