blob: b09af787975e9e532d18477ff36be448b665e099 (
plain)
1
2
3
4
5
6
7
8
9
|
package bjc.utils.exceptions;
public class InvalidToken extends RuntimeException {
private static final long serialVersionUID = -5077165766341244689L;
public InvalidToken(String tok) {
super(String.format("Did not recognize token '%s' as a valid token", tok));
}
}
|