mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 01:35:57 +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;
|
|
}
|