Thrown in case a value cannot be converted to or from the requested type
67686970717273
super(context); } @SuppressWarnings("rawtypes") public AbstractTaskBuilder builder() { throw new ModelTypeException("No builder implemented."); }
63646566676869
super(context); } @SuppressWarnings("rawtypes") public AbstractFlowNodeBuilder builder() { throw new ModelTypeException("Builder is not supported for type " + getClass()); }
62636465666768
101102103104105106107108109110111
} } protected ModelElementInstance createModelElementInstance(ModelTypeInstanceContext instanceContext) { if (isAbstract) { throw new ModelTypeException("Model element type " + getTypeName() + " is abstract and no instances can be created."); } else { return instanceProvider.newInstance(instanceContext); } }