AbstractMarshaller uses general exception message in extracted buildDocument() method

Issue: SPR-11635
This commit is contained in:
Juergen Hoeller 2014-04-09 20:54:41 +02:00
parent 196f629a20
commit f7a17added
1 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,8 @@ public abstract class AbstractMarshaller implements Marshaller, Unmarshaller {
/** /**
* Build a new {@link Document} from this marshaller's {@link DocumentBuilderFactory}. * Build a new {@link Document} from this marshaller's {@link DocumentBuilderFactory},
* as a placeholder for a DOM node.
* @see #createDocumentBuilderFactory() * @see #createDocumentBuilderFactory()
* @see #createDocumentBuilder(DocumentBuilderFactory) * @see #createDocumentBuilder(DocumentBuilderFactory)
*/ */
@ -114,8 +115,7 @@ public abstract class AbstractMarshaller implements Marshaller, Unmarshaller {
return documentBuilder.newDocument(); return documentBuilder.newDocument();
} }
catch (ParserConfigurationException ex) { catch (ParserConfigurationException ex) {
throw new UnmarshallingFailureException( throw new UnmarshallingFailureException("Could not create document placeholder: " + ex.getMessage(), ex);
"Could not create document placeholder for DOMSource: " + ex.getMessage(), ex);
} }
} }