mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 10:31:53 +08:00
7 lines
154 B
Dart
7 lines
154 B
Dart
class UserException implements Exception {
|
|
UserException(this.userMessage);
|
|
|
|
/// Message that can be shown to the user.
|
|
final String userMessage;
|
|
}
|