view src/ch/ethz/ssh2/transport/NegotiateException.java @ 414:12b2a3a35afe
more debugging looking for duplicate transmission
author
Carl Byington <carl@five-ten-sg.com>
date
Sat, 25 Oct 2014 10:52:39 -0700 (2014-10-25)
parents
91a31873c42a
children
line source
+ − /*
+ − * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
+ − * Please refer to the LICENSE.txt for licensing details.
+ − */
+ − package ch.ethz.ssh2.transport;
+ −
+ − import java.io.IOException;
+ −
+ − /**
+ − * @version $Id: NegotiateException.java 149 2014-04-28 09:18:35Z dkocher@sudo.ch $
+ − */
+ − public class NegotiateException extends IOException {
+ − private static final long serialVersionUID = 3689910669428143157L;
+ −
+ − public NegotiateException() {
+ − //
+ − }
+ −
+ − public NegotiateException(String message) {
+ − super(message);
+ − }
+ − }