new project stable version
This commit is contained in:
8
lib/data/exceptions/scooter_not_found_exception.dart
Normal file
8
lib/data/exceptions/scooter_not_found_exception.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
class ScooterNotFoundException implements Exception {
|
||||
final String message;
|
||||
|
||||
ScooterNotFoundException({this.message = "Самокат не найден"});
|
||||
|
||||
@override
|
||||
String toString() => message;
|
||||
}
|
||||
Reference in New Issue
Block a user