Mercurial > hg > monetdb-java
view src/main/java/org/monetdb/mcl/net/ValidationError.java @ 789:88c5b678e974 monetdbs
URL parser passes the tests.
Some tests had to change to accomodate Java.
author | Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com> |
---|---|
date | Wed, 29 Nov 2023 13:28:52 +0100 (17 months ago) |
parents | |
children | 5aa19bbed0d6 |
line wrap: on
line source
package org.monetdb.mcl.net; public class ValidationError extends Exception { public ValidationError(String parameter, String message) { super(parameter + ": " + message); } public ValidationError(String message) { super(message); } }