Files
workavia-mail-front/lib/main/exceptions/permission_exception.dart
T
2025-05-16 09:59:49 -07:00

15 lines
445 B
Dart

import 'package:equatable/equatable.dart';
abstract class PermissionException with EquatableMixin implements Exception {
final String? message;
const PermissionException({this.message});
}
class NotGrantedPermissionStorageException extends PermissionException {
const NotGrantedPermissionStorageException() : super(message: 'Permission Storage has not been granted access');
@override
List<Object?> get props => [super.message];
}