blob: 708732bc5e5472c82cdf8dcb22464681a973f2c6 (
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
32
|
/**
*
*/
package uk.org.ury.protocol.exceptions;
/**
* 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);
}
}
|