mirror of
https://github.com/Enzodtz/flutter-jwt-auth-template.git
synced 2025-08-06 16:19:47 +08:00
6 lines
138 B
Dart
6 lines
138 B
Dart
class SecureStorageNotFoundException implements Exception {
|
|
final String? message;
|
|
|
|
SecureStorageNotFoundException({this.message});
|
|
}
|