improve comment fetching. (#357)

This commit is contained in:
Jojo Feng
2023-12-09 18:20:28 -08:00
committed by GitHub
parent d5ae60327d
commit df2d2478d5
4 changed files with 57 additions and 6 deletions

View File

@ -31,6 +31,10 @@ 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...');
}