throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public OutboundVariable convertOutbound(Object data, OutboundContext context) throws ConversionException {
RollbackException ex = (RollbackException) data;
if ((data == null) || (ex.getValue() == null)) return new NonNestedOutboundVariable("null");
return converterManager.convertOutbound(ex.getValue(), context);
}