X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fcommons%2Fstring%2Ftokenizer%2FInvalidSyntaxException.java;h=a2028fa332e850006deb9bbedb6f7cb47018efa1;hb=e733e1cfb4039f049540b9667e7ce68b746e9d81;hp=0856b5f6308dc52cce0ac17e2b83b74ff0395c95;hpb=cf965fda534cc562368c9f2a3f34475e2519fcdc;p=svjatoslav_commons.git diff --git a/src/main/java/eu/svjatoslav/commons/string/tokenizer/InvalidSyntaxException.java b/src/main/java/eu/svjatoslav/commons/string/tokenizer/InvalidSyntaxException.java old mode 100644 new mode 100755 index 0856b5f..a2028fa --- a/src/main/java/eu/svjatoslav/commons/string/tokenizer/InvalidSyntaxException.java +++ b/src/main/java/eu/svjatoslav/commons/string/tokenizer/InvalidSyntaxException.java @@ -1,20 +1,20 @@ /* * Svjatoslav Commons - shared library of common functionality. - * Copyright ©2012-2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Copyright ©2012-2020, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.commons.string.tokenizer; public class InvalidSyntaxException extends Exception { - private static final long serialVersionUID = 88294980027680555L; + private static final long serialVersionUID = 88294980027680555L; - public InvalidSyntaxException(final String cause) { - super(cause); - } + public InvalidSyntaxException(final String cause) { + super(cause); + } }