Exception: DRb::DRbUnknownError
- Defined in:
- lib/drb/drb.rb
Instance Attribute Summary collapse
-
#unknown ⇒ Object
readonly
Returns the value of attribute unknown.
Class Method Summary collapse
Instance Method Summary collapse
- #_dump(lv) ⇒ Object
-
#initialize(unknown) ⇒ DRbUnknownError
constructor
A new instance of DRbUnknownError.
Constructor Details
#initialize(unknown) ⇒ DRbUnknownError
Returns a new instance of DRbUnknownError.
3 4 5 6 |
# File 'lib/drb/drb.rb', line 3 def initialize(unknown) @unknown = unknown super(unknown.name) end |
Instance Attribute Details
#unknown ⇒ Object (readonly)
Returns the value of attribute unknown.
7 8 9 |
# File 'lib/drb/drb.rb', line 7 def unknown @unknown end |
Class Method Details
._load(s) ⇒ Object
9 10 11 |
# File 'lib/drb/drb.rb', line 9 def self._load(s) Marshal::load(s) end |
Instance Method Details
#_dump(lv) ⇒ Object
13 14 15 |
# File 'lib/drb/drb.rb', line 13 def _dump(lv) Marshal::dump(@unknown) end |