11 lines
160 B
Dart
11 lines
160 B
Dart
class AuthException implements Exception {
|
|
final String message;
|
|
|
|
AuthException(this.message);
|
|
|
|
@override
|
|
String toString() {
|
|
return message;
|
|
}
|
|
}
|