blob: 3aba43460b8c1280f88a1c91290f1d12c700b66f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package bjc.utils.parserutils.delims;
/**
* The superclass for exceptions thrown during sequence delimitation.
*/
public class DelimiterException extends RuntimeException {
/**
* Create a new generic delimiter exception.
*
* @param res
* The reason for this exception.
*/
public DelimiterException(String res) {
super(res);
}
}
|