use InterceptorsWrapper for caching. (#358)

This commit is contained in:
Jojo Feng
2023-12-10 15:29:40 -08:00
committed by GitHub
parent df2d2478d5
commit 70bb78afcb
7 changed files with 84 additions and 37 deletions

View File

@ -27,14 +27,6 @@ class PossibleParsingException extends AppException {
final int itemId;
}
class BrowserNotRunningException extends AppException {
BrowserNotRunningException() : super(message: 'Browser not running...');
}
class DelayNotFinishedException extends AppException {
DelayNotFinishedException() : super(message: 'Delay not finished...');
}
class GenericException extends AppException {
GenericException() : super(message: 'Something went wrong...');
}