Files
workavia-mail-front/lib/main/exceptions/cache_exception_thrower.dart
T
2023-03-10 21:10:36 +07:00

9 lines
196 B
Dart

import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class CacheExceptionThrower extends ExceptionThrower {
@override
throwException(dynamic error) {
throw error;
}
}