Add: ThrowingParser interface used to implicitly convert

This commit is contained in:
Lars Simon Winzer
2026-03-30 12:39:37 +02:00
parent ed91494129
commit 160ec55957
@@ -0,0 +1,6 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
@FunctionalInterface
interface ThrowingParser<T> {
T parse(String value) throws Exception;
}