Files
flutter-jwt-auth-template/lib/exceptions/secure_storage_exceptions.dart
2022-02-21 16:12:35 -03:00

6 lines
138 B
Dart

class SecureStorageNotFoundException implements Exception {
final String? message;
SecureStorageNotFoundException({this.message});
}