onExceptionThrown property

Stream<ExceptionThrownEvent> onExceptionThrown

Implementation

Stream<ExceptionThrownEvent> get onExceptionThrown => eventStream(
    'Runtime.exceptionThrown',
    (WipEvent event) => ExceptionThrownEvent(event.json));