This commit is contained in:
2026-03-07 17:24:59 +08:00
parent 4418ebecac
commit b0ec8ab4bd
417 changed files with 42546 additions and 2 deletions

13
lib/app/app_error.dart Normal file
View File

@@ -0,0 +1,13 @@
class AppError implements Exception {
final int code;
final String message;
AppError(
this.message, {
this.code = 0,
});
@override
String toString() {
return message;
}
}