Files
be_happy_public/lib/data/exceptions/scooter_not_found_exception.dart
2026-05-12 12:02:40 +03:00

9 lines
207 B
Dart

class ScooterNotFoundException implements Exception {
final String message;
ScooterNotFoundException({this.message = "Самокат не найден"});
@override
String toString() => message;
}