class Dizby::UnknownObjectError
Attributes
unknown[R]
give access to the UnknownObject
class
Public Class Methods
_load(str)
click to toggle source
# File lib/dizby/distributed/unknown.rb, line 53 def self._load(str) Marshal.load(str) end
new(unknown)
click to toggle source
Calls superclass method
# File lib/dizby/distributed/unknown.rb, line 45 def initialize(unknown) @unknown = unknown super unknown.name end
Public Instance Methods
_dump(_)
click to toggle source
# File lib/dizby/distributed/unknown.rb, line 57 def _dump(_) Marshal.dump(@unknown) end