NullPointerException npe = new NullPointerException();
ServiceException serviceException = new ServiceException("hello service exception");
serviceException.setCode("helloCode");
serviceException.setLocator("helloLocator");
serviceException.getExceptionText().add("NullPointerException");
serviceException.initCause(npe);
handler.handleServiceException(serviceException, requestInfo);
InputStream input = new ByteArrayInputStream(response.getOutputStreamContent().getBytes());
DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();