Skip to content

Commit

Permalink
Replace message-only with cause
Browse files Browse the repository at this point in the history
  • Loading branch information
bmalinowsky committed Feb 15, 2016
1 parent 6ecdef9 commit 9be3870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tuwien/auto/calimero/knxnetip/ClientConnection.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Calimero 2 - A library for KNX network access
Copyright (c) 2010, 2015 B. Malinowsky
Copyright (c) 2010, 2016 B. Malinowsky
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -170,7 +170,7 @@ protected void connect(final InetSocketAddress localEP, final InetSocketAddress
if (localEP.getAddress().isLoopbackAddress())
logger.warn("try to specify the actual IP address of the local host");
LogManager.getManager().removeLogService(logger.getName());
throw new KNXException("on connect to " + serverCtrlEP + ": " + thrown.getMessage());
throw new KNXException("on connect to " + serverCtrlEP, thrown);
}

logger.trace("wait for connect response from " + ctrlEndpt + " ...");
Expand Down

0 comments on commit 9be3870

Please sign in to comment.