Daily commit
This commit is contained in:
8
lib/exceptions/server.dart
Normal file
8
lib/exceptions/server.dart
Normal file
@ -0,0 +1,8 @@
|
||||
class ServerErrorException implements Exception {
|
||||
final String message;
|
||||
|
||||
ServerErrorException({required this.message});
|
||||
|
||||
@override
|
||||
String toString() => message;
|
||||
}
|
||||
Reference in New Issue
Block a user