Files
workavia-mail-front/lib/main/exceptions/cache_exception_thrower.dart
T
2022-10-28 16:20:02 +07:00

10 lines
317 B
Dart

import 'package:tmail_ui_user/main/exceptions/cache_exception.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class CacheExceptionThrower extends ExceptionThrower {
@override
void throwException(dynamic exception) {
throw UnknownCacheError(message: exception.toString());
}
}