01: /******************************************************************************
02: * $Source: /cvsroot/sshwebproxy/src/java/com/ericdaugherty/sshwebproxy/SshConnectException.java,v $
03: * $Revision: 1.2 $
04: * $Author: edaugherty $
05: * $Date: 2003/11/23 00:18:10 $
06: ******************************************************************************
07: * Copyright (c) 2003, Eric Daugherty (http://www.ericdaugherty.com)
08: * All rights reserved.
09: *
10: * Redistribution and use in source and binary forms, with or without
11: * modification, are permitted provided that the following conditions are met:
12: *
13: * * Redistributions of source code must retain the above copyright notice,
14: * this list of conditions and the following disclaimer.
15: * * Redistributions in binary form must reproduce the above copyright
16: * notice, this list of conditions and the following disclaimer in the
17: * documentation and/or other materials provided with the distribution.
18: * * Neither the name of the Eric Daugherty nor the names of its
19: * contributors may be used to endorse or promote products derived
20: * from this software without specific prior written permission.
21: *
22: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32: * THE POSSIBILITY OF SUCH DAMAGE.
33: * *****************************************************************************
34: * For current versions and more information, please visit:
35: * http://www.ericdaugherty.com/dev/sshwebproxy
36: *
37: * or contact the author at:
38: * web@ericdaugherty.com
39: *****************************************************************************/package com.ericdaugherty.sshwebproxy;
40:
41: /**
42: * Thrown if there is an error opening a new connection
43: * or a new channel on an existing connection.
44: *
45: * @author Eric Daugherty
46: */
47: public class SshConnectException extends Exception {
48:
49: public SshConnectException(String message) {
50: super(message);
51: }
52: }
|