create exception for session web

This commit is contained in:
ManhNTX
2022-07-12 15:27:53 +07:00
committed by Dat H. Pham
parent ef436c3557
commit 269e8dbfef
11 changed files with 47 additions and 40 deletions
+1
View File
@@ -88,6 +88,7 @@ export 'data/network/download/download_client.dart';
export 'data/network/download/download_manager.dart';
export 'data/network/download/downloaded_response.dart';
export 'data/network/download/download_client.dart';
export 'data/model/exception/session_web_exception.dart';
// State
export 'presentation/state/success.dart';
@@ -0,0 +1,5 @@
class SessionWebException implements Exception {
final String? errorMessage;
SessionWebException({this.errorMessage});
}