// here we need to put the FaultDetail into the FaultDetailDocument
FaultDetail faultDetail = new FaultDetail();
faultDetail.setMajor((short)2);
faultDetail.setMinor((short)1);
LOG.info("Executing operation pingMe, throwing PingMeFault exception");
throw new PingMeFault("PingMeFault raised by server", faultDetail);
}