(err)
| 1547 | |
| 1548 | // handle errors |
| 1549 | var onError = function onError(err) { |
| 1550 | postActivate ? next() : abort(); |
| 1551 | if (err && !transition.router._suppress) { |
| 1552 | warn$1('Uncaught error during transition: '); |
| 1553 | throw err instanceof Error ? err : new Error(err); |
| 1554 | } |
| 1555 | }; |
| 1556 | |
| 1557 | // since promise swallows errors, we have to |
| 1558 | // throw it in the next tick... |
no test coverage detected