1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 10:49:41 +02:00

Initial account manager functionality.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1846 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-03-08 23:09:48 +00:00 committed by mtucker
parent 996f50449c
commit 7fa5b3608e
6 changed files with 362 additions and 31 deletions

View file

@ -141,9 +141,9 @@ public class XMPPError {
public String toString() {
StringBuffer txt = new StringBuffer();
txt.append(code);
txt.append("(").append(code).append(")");
if (message != null) {
txt.append(": ").append(message);
txt.append(" ").append(message);
}
return txt.toString();
}