clean up
This commit is contained in:
12
lib/domain/exceiptions/server_exceptions.dart
Normal file
12
lib/domain/exceiptions/server_exceptions.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
class ServerException {
|
||||
@override
|
||||
List<Object> get props => null;
|
||||
|
||||
call() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@override
|
||||
bool get stringify => null;
|
||||
}
|
||||
8
lib/domain/exceiptions/signin_exception.dart
Normal file
8
lib/domain/exceiptions/signin_exception.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
class SigninException {
|
||||
final String msg;
|
||||
|
||||
SigninException(this.msg);
|
||||
|
||||
@override
|
||||
String toString() => msg;
|
||||
}
|
||||
Reference in New Issue
Block a user