Files
TubeCards/lib/utils/user_exception.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

7 lines
154 B
Dart

class UserException implements Exception {
UserException(this.userMessage);
/// Message that can be shown to the user.
final String userMessage;
}