Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/mcl/net/ValidationError.java @ 834:5aa19bbed0d6 monetdbs
Comments and formatting
author | Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com> |
---|---|
date | Wed, 13 Dec 2023 15:39:47 +0100 (16 months ago) |
parents | 88c5b678e974 |
children | 811cfafcc242 |
comparison
equal
deleted
inserted
replaced
813:a71afa48f269 | 834:5aa19bbed0d6 |
---|---|
1 package org.monetdb.mcl.net; | 1 package org.monetdb.mcl.net; |
2 | 2 |
3 public class ValidationError extends Exception { | 3 public class ValidationError extends Exception { |
4 public ValidationError(String parameter, String message) { | 4 public ValidationError(String parameter, String message) { |
5 super(parameter + ": " + message); | 5 super(parameter + ": " + message); |
6 } | 6 } |
7 | 7 |
8 public ValidationError(String message) { | 8 public ValidationError(String message) { |
9 super(message); | 9 super(message); |
10 } | 10 } |
11 } | 11 } |