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