File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
core/src/main/java/org/springframework/ws/soap/server/endpoint Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 2727import org .springframework .ws .soap .soap11 .Soap11Body ;
2828
2929/**
30- * Exception resolver that generates a <code><soap:fault></code> based on the given exception.
30+ * Exception resolver that allows for mapping exception class names to SOAP Faults. The mappings are set using the
31+ * <code>exceptionMappings</code> property, the format of which is documented in {@link SoapFaultDefinitionEditor}.
3132 *
3233 * @author Arjen Poutsma
3334 */
@@ -44,12 +45,15 @@ public class SoapFaultMappingExceptionResolver extends AbstractEndpointException
4445 * The values of the given properties object should use the format described in
4546 * <code>SoapFaultDefinitionEditor</code>.
4647 * <p/>
47- * Follows the same matching algorithm as RuleBasedTransactionAttribute and RollbackRuleAttribute.
48+ * Follows the same matching algorithm as <code>RuleBasedTransactionAttribute</code> and
49+ * <code>RollbackRuleAttribute</code>.
4850 *
4951 * @param mappings exception patterns (can also be fully qualified class names) as keys, fault definition texts as
5052 * values
5153 * @see SoapFaultDefinitionEditor
5254 * @see org.springframework.web.servlet.handler.SimpleMappingExceptionResolver
55+ * @see org.springframework.transaction.interceptor.RuleBasedTransactionAttribute
56+ * @see org.springframework.transaction.interceptor.RollbackRuleAttribute
5357 */
5458 public void setExceptionMappings (Properties mappings ) {
5559 exceptionMappings = mappings ;
You can’t perform that action at this time.
0 commit comments