commit 796f8c5ce572822b4b0e7bf38ebbaaa8a5404675 parent e878b4bf8dcab41a89878f7aed515c4854d7c69c Author: MS <ms@taler.net> Date: Thu, 19 Jan 2023 16:30:21 +0100 wordier error message Diffstat:
| M | util/src/main/kotlin/strings.kt | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/src/main/kotlin/strings.kt b/util/src/main/kotlin/strings.kt @@ -186,7 +186,7 @@ fun parseUuid(maybeUuid: String): UUID { val uuid = try { UUID.fromString(maybeUuid) } catch (e: Exception) { - throw badRequest("$maybeUuid is invalid.") + throw badRequest("$maybeUuid is an invalid UUID.") } return uuid } \ No newline at end of file