mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 09:39:39 +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:
parent
996f50449c
commit
7fa5b3608e
6 changed files with 362 additions and 31 deletions
|
@ -97,19 +97,12 @@ public class XMPPException extends Exception {
|
|||
}
|
||||
|
||||
public void printStackTrace() {
|
||||
if (error != null) {
|
||||
System.err.println(error);
|
||||
}
|
||||
super.printStackTrace();
|
||||
if (cause != null) {
|
||||
System.err.println("Nested Exception: ");
|
||||
cause.printStackTrace();
|
||||
}
|
||||
printStackTrace(System.err);
|
||||
}
|
||||
|
||||
public void printStackTrace(PrintStream out) {
|
||||
if (error != null) {
|
||||
System.err.println(error);
|
||||
System.err.print(error + " -- ");
|
||||
}
|
||||
super.printStackTrace(out);
|
||||
if (cause != null) {
|
||||
|
@ -120,7 +113,7 @@ public class XMPPException extends Exception {
|
|||
|
||||
public void printStackTrace(PrintWriter out) {
|
||||
if (error != null) {
|
||||
System.err.println(error);
|
||||
System.err.print(error + " -- ");
|
||||
}
|
||||
super.printStackTrace(out);
|
||||
if (cause != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue