Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/PacketFormatException.java @ 308:42b15aaa7ac7 ganymed
merge
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 14:21:50 -0700 |
parents | 071eccdff8ea |
children |
comparison
equal
deleted
inserted
replaced
306:90e47d99ea54 | 308:42b15aaa7ac7 |
---|---|
3 import java.io.IOException; | 3 import java.io.IOException; |
4 | 4 |
5 /** | 5 /** |
6 * @version $Id: PacketFormatException.java 151 2014-04-28 10:03:39Z dkocher@sudo.ch $ | 6 * @version $Id: PacketFormatException.java 151 2014-04-28 10:03:39Z dkocher@sudo.ch $ |
7 */ | 7 */ |
8 public class PacketFormatException extends IOException | 8 public class PacketFormatException extends IOException { |
9 { | |
10 | 9 |
11 public PacketFormatException(String message) | 10 public PacketFormatException(String message) { |
12 { | 11 super(message); |
13 super(message); | 12 } |
14 } | |
15 } | 13 } |