class OroGen::NotExportedType

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

Attributes

typekits[R]

Public Class Methods

new(type, typekits) click to toggle source
Calls superclass method OroGen::InvalidInterfaceType.new
# File lib/orogen/exceptions.rb, line 27
def initialize(type, typekits)
    @typekits = typekits
    super(type)
end