mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 10:22:18 +01:00
Add better error text if input is NaN
This commit is contained in:
parent
1134c8bc71
commit
b78a7d7c90
@ -367,6 +367,10 @@ class CreateOfferViewModel extends ActivatableWithDataModel<CreateOfferDataModel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (NumberFormatException t) {
|
||||||
|
log.error(t.toString());
|
||||||
|
t.printStackTrace();
|
||||||
|
new Popup<>().warning(Res.get("validation.NaN")).show();
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
log.error(t.toString());
|
log.error(t.toString());
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
|
Loading…
Reference in New Issue
Block a user