Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/mcl/net/ValidationError.java @ 918:2543e24eb79a
Add final to more classes.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Wed, 24 Jul 2024 19:38:33 +0200 (9 months ago) |
parents | 811cfafcc242 |
children | d416e9b6b3d0 |
comparison
equal
deleted
inserted
replaced
917:c2164decf7f1 | 918:2543e24eb79a |
---|---|
11 */ | 11 */ |
12 | 12 |
13 package org.monetdb.mcl.net; | 13 package org.monetdb.mcl.net; |
14 | 14 |
15 @SuppressWarnings("serial") | 15 @SuppressWarnings("serial") |
16 public class ValidationError extends Exception { | 16 public final class ValidationError extends Exception { |
17 public ValidationError(String parameter, String message) { | 17 public ValidationError(String parameter, String message) { |
18 super(parameter + ": " + message); | 18 super(parameter + ": " + message); |
19 } | 19 } |
20 | 20 |
21 public ValidationError(String message) { | 21 public ValidationError(String message) { |