Почему я не могу поймать исключение? - PullRequest
0 голосов
/ 31 марта 2020
try {
  final result = await http.get(pingUrl)
    .catchError((e) => print(e));
  return result;
} catch (e) {
  print(e)
}

но я получил это: enter image description here

Почему я не могу обработать исключение здесь в блоке catch?

1 Ответ

1 голос
/ 31 марта 2020

Нет, потому что вы ловите в будущем.

Вы не должны кататься в будущем:

try {
  final result = await http.get(pingUrl);
    // .catchError((e) => print(e)); <- removed
  return result;
} catch (e) {
  print(e)
}

Или бросить снова в catchError:

try {
  final result = await http.get(pingUrl)
    .catchError((e) {
       print(e);
       throw foo;
    });

  return result;
} catch (e) {
  print(e)
}

Я предпочитаю первый вариант.

...