Updated copyright notice
[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-2018, 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 3 of the GNU Lesser General Public License
7  * or later 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 }