switched to HTTPS
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / string / tokenizer / InvalidSyntaxException.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.commons.string.tokenizer;
6
7 public class InvalidSyntaxException extends Exception {
8
9     private static final long serialVersionUID = 88294980027680555L;
10
11     public InvalidSyntaxException(final String cause) {
12         super(cause);
13     }
14
15 }