Exception: Orocos::InterfaceObjectNotFound

Inherits:
NotFound
  • Object
show all
Defined in:
lib/orocos/base.rb

Overview

Emitted when an interface object is requested, that does not exist

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(task, name) ⇒ InterfaceObjectNotFound

Returns a new instance of InterfaceObjectNotFound



34
35
36
37
38
# File 'lib/orocos/base.rb', line 34

def initialize(task, name)
    @task = task
    @name = name
    super()
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name



32
33
34
# File 'lib/orocos/base.rb', line 32

def name
  @name
end

#taskObject (readonly)

Returns the value of attribute task



31
32
33
# File 'lib/orocos/base.rb', line 31

def task
  @task
end