test: NbpServiceTest invocation fixed

This commit is contained in:
Piotr Dec 2024-05-23 22:58:55 +02:00
parent 4a2338d699
commit 157a1ebe68
Signed by: stawros
GPG key ID: F89F27AD8F881A91
2 changed files with 17 additions and 8 deletions

View file

@ -0,0 +1,9 @@
package eu.ztsh.wymiana.exception;
public class NoDataException extends RuntimeException {
public NoDataException(String code, String date) {
super("No data for code %s and date %s".formatted(code, date));
}
}