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