Exception: OroGen::NotExportedType

Inherits:
InvalidInterfaceType show all
Defined in:
lib/orogen/exceptions.rb

Overview

Exception thrown when a type will be used on a task context interface (to create a port, property, …), but it is exported by no typekit

Instance Attribute Summary collapse

Attributes inherited from InvalidInterfaceType

#type

Instance Method Summary collapse

Constructor Details

#initialize(type, typekits) ⇒ NotExportedType

Returns a new instance of NotExportedType



27
28
29
30
# File 'lib/orogen/exceptions.rb', line 27

def initialize(type, typekits)
    @typekits = typekits
    super(type)
end

Instance Attribute Details

#typekitsObject (readonly)

Returns the value of attribute typekits



26
27
28
# File 'lib/orogen/exceptions.rb', line 26

def typekits
  @typekits
end