Merge branch 'dev' into space_managment_refactoring

This commit is contained in:
raf-dev1
2025-06-11 11:12:52 +03:00
committed by GitHub
214 changed files with 8413 additions and 2903 deletions

View File

@ -0,0 +1,10 @@
class APIException implements Exception {
final String message;
APIException(this.message);
@override
String toString() {
return message;
}
}