change the validation from static code to backend

This commit is contained in:
mohammad
2025-06-03 10:44:34 +03:00
parent f07dbad1ea
commit 3c98365338
6 changed files with 346 additions and 213 deletions

View File

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