1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-07-01 15:56:45 +02:00

Print the exception for which the connection was closed.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2511 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2005-07-23 15:56:06 +00:00 committed by gaston
parent 74028cdb9f
commit 49847ac1c6

View file

@ -203,6 +203,8 @@ class PacketReader {
void notifyConnectionError(Exception e) {
done = true;
connection.close();
// Print the stack trace to help catch the problem
e.printStackTrace();
// Notify connection listeners of the error.
ArrayList listenersCopy;
synchronized (connectionListeners) {