flutter_registration/lib/src/model/auth_exception.dart

10 lines
159 B
Dart
Raw Normal View History

2022-09-20 15:51:22 +02:00
class AuthException implements Exception {
AuthException(this.message);
final String message;
@override
String toString() {
return message;
}
}