comparison src/main/java/org/monetdb/mcl/parser/MCLParseException.java @ 866:6d229896c785

Remove not used/needed serialVersionUID Instead suppress the warning
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 01 Feb 2024 17:48:36 +0100 (15 months ago)
parents e890195256ac
children 2543e24eb79a
comparison
equal deleted inserted replaced
865:c196531f300c 866:6d229896c785
19 * understood or does not conform to the specifications (e.g. a 19 * understood or does not conform to the specifications (e.g. a
20 * missing field). The instance that throws the exception will try to 20 * missing field). The instance that throws the exception will try to
21 * give an error offset whenever possible. Alternatively it makes sure 21 * give an error offset whenever possible. Alternatively it makes sure
22 * that the error message includes the offending data read. 22 * that the error message includes the offending data read.
23 */ 23 */
24 @SuppressWarnings("serial")
24 public class MCLParseException extends java.text.ParseException { 25 public class MCLParseException extends java.text.ParseException {
25 private static final long serialVersionUID = 1L;
26
27 public MCLParseException(String e) { 26 public MCLParseException(String e) {
28 super(e, -1); 27 super(e, -1);
29 } 28 }
30 29
31 public MCLParseException(String e, int offset) { 30 public MCLParseException(String e, int offset) {