Exception: OpenHAB::Core::Proxy::StaleProxyError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/openhab/core/proxy.rb

Overview

Error raised when an item is attempted to be accessed, but no longer exists

Instance Method Summary collapse

Constructor Details

#initialize(type, uid) ⇒ StaleProxyError

Returns a new instance of StaleProxyError.



30
31
32
# File 'lib/openhab/core/proxy.rb', line 30

def initialize(type, uid)
  super("#{type} #{uid} does not currently exist")
end