This commit is contained in:
efrilm
2025-10-26 16:09:56 +07:00
parent 0e83d213fc
commit 655902a659
23 changed files with 3519 additions and 6 deletions
@@ -0,0 +1,12 @@
part of '../table.dart';
@freezed
sealed class TableFailure with _$TableFailure {
const factory TableFailure.serverError(ApiFailure failure) = _ServerError;
const factory TableFailure.unexpectedError() = _UnexpectedError;
const factory TableFailure.empty() = _Empty;
const factory TableFailure.localStorageError(String erroMessage) =
_LocalStorageError;
const factory TableFailure.dynamicErrorMessage(String erroMessage) =
_DynamicErrorMessage;
}