<div dir="ltr"><div>I was writing some code yesterday which utilized throwing funcs and I found some inconveniences which I think could be improved in some future version of Swift.<br></div><div><br></div><div>1. <b>Default error handling</b></div><div>Swift, unlike most languages, requires us to put try, try? or try! before calling throwing funcs. When using try, we already have our do..catch block surrounding the throwing func. Sometimes there are multiple cases where the error is handled the same way, and there&#39;s a need to write the same do..catch blocks every time, or just intercept the error in the throwing func or a wrapping function for a throwing one, but then there is no possibility to do the handling anymore if we want to handle it another way in some specific case. I thought that this would be a good idea to introduce something like default error handling e.g. with calling the func without using the try keyword or do..catch block. In this case, a keyword like throws? could be introduced to be used to use instead of throws when defining a function. Such a function would:</div><div>1. Contain do..catch blocks, like normal throwing func</div><div>2. Would execute these do..catch blocks if the caller does not use a variant of try when calling the func</div><div>3. Would not execute these do..catch blocks and pass the error to the caller, the same way as the func would do if there would be no do..catch blocks and the function was marked with &quot;throws&quot;. In this case, the caller would be the one to handle the error.</div><div><br></div><div>e.g.</div><div><br></div><div>enum SomeError: Error {</div><div>  case myError</div><div>}</div><div><br></div><div>func justThrowing() throws {</div><div>  throw SomeError.myError</div><div>}</div><div><br></div><div>func myFailableFunc() throws? {</div><div>  do {</div><div>    try justThrowing()</div><div>  } catch {</div><div>    print(&quot;Handled an error&quot;)</div><div>  }</div><div>}</div><div><br></div><div>func testing() {</div><div>  </div><div>  // This one would print &quot;Handled an error&quot;</div><div>  myFailableFunc() </div><div><br></div><div>  // This one would handle the error like any other func marked with &quot;throws&quot;</div><div>  // try? and try! would also work exactly like for a normal throwing func<br></div><div>  do {</div><div>    try myFailableFunc()</div><div>  } catch {<br>    print(&quot;Handled this in the caller&quot;)</div><div>  }<br><br></div><div>}<br></div><div><br></div><div>2. <b>Grouping throwing function calls</b><br></div><div><b><br></b></div><div>I think there are cases when people are not too concerned about an error from multiple function calls in a row and what they want is to know if these functions failed or not. This could be, for example, when these operations are just doing some micro-work by calling the same func on different instances of a type and are a part of some larger operation, it is inconvenient to write try, try? or try! before each of them.</div><div><br></div><div>Instead, I would suggest introducing do try { ... } catch blocks or simply allowing to use try like this:</div><div>try { </div><div>  throwingFunc1()</div><div>  throwingFunc2()</div><div>  throwingFunc3()</div><div>}</div><div><br></div><div>Now, we&#39;re forced to do it like this:</div><div>try throwingFunc1()</div><div>try throwingFunc2()</div><div>try throwingFunc3()</div><div><br></div><div>This often becomes inconvenient and looks messy in the code. I also think that this concept could also work for try? and try!.</div><div><br></div><div><br></div><div>What are your opinions on these? Did you have any places in your code where this could be useful?</div><div>If you have some better ideas on the concept or implementation, or have some counterarguments to these suggestions, feel free to comment. </div></div>