blob: 5594f17ce50378b0728fded87d5d1bc686d3e338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package bjc.utils.ioutils.format.exceptions;
/**
* Exception thrown when the colon modifier is used on the escape directive when
* it shouldn't have been.
*
* @author Ben Culkin
*/
public class UnexpectedColonEscape extends RuntimeException {
private static final long serialVersionUID = -3807365015422854036L;
/**
* Create a new exception of this type.
*/
public UnexpectedColonEscape() {
super("Colon mod not allowed on escape marker in this context");
}
}
|