@WebService(endpointInterface = "org.mule.module.cxf.TestServiceFault", serviceName = "TestServiceFault")
public class TestServiceFaultImpl implements TestServiceFault
{
public String sayHi(String name) throws CxfEnabledFaultMessage
{
CustomFault fault = new CustomFault();
fault.setDescription("Custom Exception Message");
throw new CxfEnabledFaultMessage("Cxf Exception Message", fault);
}