}
// if the detail entry is a Parameter, try to find a serializer, if there is an error, write nothing
else if (detailEntry instanceof Parameter) {
try {
Parameter detailEntryParameter = (Parameter)detailEntry;
xjmr.querySerializer(Parameter.class, inScopeEncStyle).marshall(inScopeEncStyle, Parameter.class, detailEntryParameter, Constants.ELEM_FAULT_DETAIL_ENTRY, sink, nsStack, xjmr, ctx);
sink.write(StringUtils.lineSeparator);
}
catch (IllegalArgumentException iae) {}
}