1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.asn1new.util;
19
20 /***
21 * Thrown when a IntegerDecoder has encountered a failure condition during a decode.
22 *
23 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
24 */
25 public class IntegerDecoderException extends Exception {
26
27 /***
28 * Declares the Serial Version Uid.
29 *
30 * @see <a href="http://c2.com/cgi/wiki?AlwaysDeclareSerialVersionUid">Always Declare Serial Version Uid</a>
31 */
32 private static final long serialVersionUID = 1L;
33
34 /***
35 * Creates a IntegerDecoderException
36 *
37 * @param pMessage A message with meaning to a human
38 */
39 public IntegerDecoderException(String pMessage) {
40 super(pMessage);
41 }
42
43 }
44