test: CurrencyServiceTest completed?

This commit is contained in:
Piotr Dec 2024-05-24 16:25:19 +02:00
parent 6d8a2093b9
commit c87bcc8b54
Signed by: stawros
GPG key ID: F89F27AD8F881A91
6 changed files with 128 additions and 9 deletions

View file

@ -0,0 +1,13 @@
package eu.ztsh.wymiana.exception;
public class ExchangeFailedException extends RuntimeException{
public ExchangeFailedException() {
this("An exchange error has occurred");
}
public ExchangeFailedException(String message) {
super(message);
}
}