InsufficientMoneyException: remove extra space in exception description

This commit is contained in:
mitr15fan15v 2023-05-20 23:29:18 +03:00 committed by Andreas Schildbach
parent 192444f09a
commit a74932221c

View File

@ -34,7 +34,7 @@ public class InsufficientMoneyException extends Exception {
}
public InsufficientMoneyException(Coin missing) {
this(missing, "Insufficient money, missing " + missing.toFriendlyString());
this(missing, "Insufficient money, missing " + missing.toFriendlyString());
}
public InsufficientMoneyException(Coin missing, String message) {