<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Apr 24, 2024 at 10:08 PM Guy Steele <<a href="mailto:guy.steele@oracle.com">guy.steele@oracle.com</a>> wrote:<br>
<blockquote type="cite">
<div>On Apr 24, 2024, at 10:50 PM, Kevin Bourrillion <<a href="mailto:kevinb9n@gmail.com" target="_blank">kevinb9n@gmail.com</a>> wrote:</div>
<br>
<div>
<div dir="ltr">Hey Angelos!
<div><br>
</div>
<div>For whatever my take is worth here, I'm also skeptical. I think the bar for adding another way to catch exceptions should be really high, and the benefits here wouldn't clear it. I just don't expect the nested switch-in-try will be painful enough
<i>often</i> enough.</div>
<div><br>
</div>
<div>This feature would only be applicable when the whole possibly-exception-producing code can fit into a single expression in the switch header . . .</div>
</div>
</div>
</blockquote>
<br>
</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>
<div>This raises a very good question: what do we expect the "whole possibly-exception-producing code” to look like in practice?</div>
<div><br>
</div>
<div>I conjecture that the attractive situation for using switch-with-“case throws"-clauses will NOT involve arbitrarily large expressions that might need to be refactored, but rather a single method call (or possibly an expression with a single operator) where
 all argument expressions are variables or constants, rather than other stuff that might cause exceptions.</div>
<div><br>
</div>
<div>But I am not sure. So maybe this is a conjecture that could be researched.</div>
<div><br>
</div>
<div>—Guy</div>
<div><br></div></div></blockquote><div><br></div><div>I expect a major consumer of this feature to be streams and other functional constructs. Try-catch is an exclusively block-oriented mechanism. There is as of now no way to catch an exception inside an expression, which is why I think this feature is valuable. Handling exceptions inside a switch expression lambda would be a significant enhancement.<br></div><div><br></div><div>getStream().map(value -> switch(someFunction(value)) {</div><div>  case FirstPossibleType fpt -> ...</div><div>  case SecondPossibleType spt -> ...</div><div>  case catch IOException io -> ...</div><div>  case catch IllegalArgumentException ia -> ...</div><div>}).filter(...)</div><div>  .forEach(...);</div><div><br></div><div>is an awful lot shorter, cleaner, and easier to read and write than</div><div><br></div><div>
<div>getStream().map(value -> {</div><div>  final SuperType st;</div><div>  try {</div><div>    st = someFunction(value));</div><div>  } catch (IOException io) {</div><div>    ...</div><div>  } catch (IllegalArgumentException ia) {</div><div>    ...</div><div>  }</div><div>  return switch (st) {<br></div><div>    case FirstPossibleType fpt -> ...</div><div>    case SecondPossibleType spt -> ...</div><div>}).filter(...)</div><div>  .forEach(...);</div><div><br></div><div>Especially given the care that needs to be taken to only catch exceptions thrown by someFunction() and not the switch arms.</div><div><br></div><div>Side note: I agree that "case catch Exception ex" is far more consistent with the current "catch (Exception ex)" syntax than "case throws Exception ex" is. The practical familiarity, usability and consistency of "case catch" trumps any theoretical virtues of "case throws", especially since grammatical English would demand "case threw Exception ex".<br></div><div><br></div><div>Cheers,</div><div>Clement Cherlin<br></div>

</div></div></div>