blob: faa2b1f65b08a4f6d8e32d017df49e33c216e729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
*
*/
package uk.org.ury.server.protocol;
/**
* Exception thrown when the protocol decoder fails.
*
* @author Matt Windsor
*/
public class DecodeFailureException extends Exception
{
/**
*
*/
private static final long serialVersionUID = -3972492943653273528L;
/**
* Construct a new DecodeFailureException with a reason.
*
* @param reason The reason for throwing the exception.
*/
public
DecodeFailureException (String reason)
{
super (reason);
}
}
|