blob: 4172d3290c01c482d23bfe31b3f2ebe103a42a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package bjc.utils.parserutils.delims;
/**
* The superclass for exceptions thrown during sequence delimitation.
*/
public class DelimiterException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 2079514406049040888L;
/**
* Create a new generic delimiter exception.
*
* @param res
* The reason for this exception.
*/
public DelimiterException(final String res) {
super(res);
}
}
|