2 * Copyright (C) 2015 Roland Haeder
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.addressbook.exceptions;
19 import java.text.MessageFormat;
22 * This exception is thrown when a token has been badly formated. This may
23 * happen when a CSV file is broken.
25 * @author Roland Haeder
27 public class BadTokenException extends Exception {
30 * Constructor with token and count
31 * @param token Token that is not valid
34 public BadTokenException (final String token, final int count) {
35 super(MessageFormat.format("Token {0} at position {1} has not double-quotes on both ends.", token, count));