@Test
public void informationWillPassUpIfServiceExceptionIsRootCauseOfClientHandlerExceptions() {
// Arrange
ClientResponse response = new ClientResponse(503, null,
new ByteArrayInputStream(new byte[0]), null);
UniformInterfaceException rootCause = new UniformInterfaceException(
response);
ServiceException originalDescription = ServiceExceptionFactory.process(
"underlying", new ServiceException(rootCause));
ClientHandlerException wrappingException = new ClientHandlerException(
originalDescription);