Commit 37c7e6bb authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Removed - too expensive to throw an exception to indicate that a route was not found. JM-476

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3133 b35dd754-fafc-0310-a699-88a17e54d16e
parent d451e6bd
/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 2004 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.messenger;
import java.io.PrintStream;
import java.io.PrintWriter;
/**
* <p>Indicates a route does not exist or is invalid (cannot be reached).</p>
*
* @author Iain Shigeoka
*/
public class NoSuchRouteException extends Exception {
private Throwable nestedThrowable = null;
public NoSuchRouteException() {
super();
}
public NoSuchRouteException(String msg) {
super(msg);
}
public NoSuchRouteException(Throwable nestedThrowable) {
this.nestedThrowable = nestedThrowable;
}
public NoSuchRouteException(String msg, Throwable nestedThrowable) {
super(msg);
this.nestedThrowable = nestedThrowable;
}
public void printStackTrace() {
super.printStackTrace();
if (nestedThrowable != null) {
nestedThrowable.printStackTrace();
}
}
public void printStackTrace(PrintStream ps) {
super.printStackTrace(ps);
if (nestedThrowable != null) {
nestedThrowable.printStackTrace(ps);
}
}
public void printStackTrace(PrintWriter pw) {
super.printStackTrace(pw);
if (nestedThrowable != null) {
nestedThrowable.printStackTrace(pw);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment