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
@@ -0,0 +1,5 @@
class SessionWebException implements Exception {
final String? errorMessage;
SessionWebException({this.errorMessage});
}