0856b5f6308dc52cce0ac17e2b83b74ff0395c95
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / string / tokenizer / InvalidSyntaxException.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.string.tokenizer;
11
12 public class InvalidSyntaxException extends Exception {
13
14         private static final long serialVersionUID = 88294980027680555L;
15
16         public InvalidSyntaxException(final String cause) {
17                 super(cause);
18         }
19
20 }