mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 21:33:44 +02:00
10 lines
159 B
Dart
10 lines
159 B
Dart
|
class AuthException implements Exception {
|
||
|
AuthException(this.message);
|
||
|
final String message;
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
return message;
|
||
|
}
|
||
|
}
|