Daily commit

This commit is contained in:
Dennis Nemec
2026-02-05 10:46:13 +01:00
parent 4e808e234d
commit e0007dcf33
51 changed files with 2131 additions and 139 deletions

View File

@ -0,0 +1,8 @@
class ServerErrorException implements Exception {
final String message;
ServerErrorException({required this.message});
@override
String toString() => message;
}