Mercurial > dive4elements > http-client
changeset 118:79169a0b5a0d
Fixed error message
author | mschaefer |
---|---|
date | Wed, 13 Jun 2018 19:00:08 +0200 |
parents | 5b184dc5b4a9 |
children | 5aad20399cbd |
files | src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Wed Jun 13 18:38:07 2018 +0200 +++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Wed Jun 13 19:00:08 2018 +0200 @@ -162,7 +162,7 @@ } catch (IOException ioe) { throw new ConnectionException( - "Connection to server failed. No Artifact created.\n" + XMLUtils.toString(doc), ioe); + "Connection to server failed. No Artifact created. " + XMLUtils.toString(doc), ioe); } }