flutter_registration/lib/src/model/auth_exception.dart
2022-09-20 15:51:22 +02:00

10 lines
159 B
Dart

class AuthException implements Exception {
AuthException(this.message);
final String message;
@override
String toString() {
return message;
}
}