1 package org.springframework.ws.soap.security.xwss;
2
3 import javax.xml.namespace.QName;
4
5 import org.springframework.ws.soap.security.WsSecurityFaultException;
6
7 /**
8 * XWSS-specific version of the {@link WsSecurityFaultException}.
9 *
10 * @author Arjen Poutsma
11 * @since 1.0.1
12 */
13 public class XwsSecurityFaultException extends WsSecurityFaultException {
14
15 public XwsSecurityFaultException(QName faultCode, String faultString, String faultActor) {
16 super(faultCode, faultString, faultActor);
17 }
18 }