/**
 * $RCSfile$
 * $Revision$
 * $Date$
 *
 * Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved.
 *
 * This software is the proprietary information of CoolServlets, Inc.
 * Use is subject to license terms.
 */
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);
        }
    }
}