Exception: OroGen::NotExportedType
- Inherits:
-
InvalidInterfaceType
- Object
- RuntimeError
- InvalidInterfaceType
- OroGen::NotExportedType
- 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
-
#typekits ⇒ Object
readonly
Returns the value of attribute typekits.
Attributes inherited from InvalidInterfaceType
Instance Method Summary collapse
-
#initialize(type, typekits) ⇒ NotExportedType
constructor
A new instance of NotExportedType.
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
#typekits ⇒ Object (readonly)
Returns the value of attribute typekits
26 27 28 |
# File 'lib/orogen/exceptions.rb', line 26 def typekits @typekits end |