Skip to content

Commit

Permalink
[cdp] Throw an exception if unable to process a message
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Aug 18, 2020
1 parent 4d7df92 commit 6b0e6f5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ public void onText(CharSequence data) {
handle(data);
} catch (Throwable t) {
LOG.log(Level.WARNING, "Unable to process: " + data, t);
throw new DevToolsException(t);
}
});
}
Expand Down

0 comments on commit 6b0e6f5

Please sign in to comment.