<div>Well, as Dave pointed, you can very rarely recover from an error, which IMO is absolutely true.</div><div><br></div><div>If your operation fails you don&#39;t really care unless you can recover. And you know your cases, which you can recover from (in reality one usually does it in optimization phase, though).</div><div><br></div><div>What else do you need the type of error for at the very end of your call stack? In 90% you will tell the user &quot;ah, sorry, something happened. Come back later&quot; and log the error (if you haven&#39;t forgot it).</div><div><br></div><div>In most cases the errors are not for recovering. They neither are to be presented to users. They are for developers to read the log/crash report/whatever else and analyze it. Most of the errors are for debugging purposes.</div><div><br></div><div>I don&#39;t want to deal with cumbersome code the purpose of which is to just &quot;obey the language rules&quot;. Unless I know how to recover I would rethrow it. Than catch at the top of the stack and log + show the user a nice &quot;sorry&quot; message without getting techy.</div><div><br><div class="gmail_quote"><div>On Tue, 28 Feb 2017 at 1:12 Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br class="gmail_msg">
&gt; On Feb 27, 2017, at 5:01 PM, Dave Abrahams &lt;<a href="mailto:dabrahams@apple.com" class="gmail_msg" target="_blank">dabrahams@apple.com</a>&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; on Mon Feb 27 2017, Matthew Johnson &lt;matthew-AT-anandabits.com&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt;&gt; On Feb 27, 2017, at 4:20 PM, Dave Abrahams &lt;<a href="mailto:dabrahams@apple.com" class="gmail_msg" target="_blank">dabrahams@apple.com</a>&gt; wrote:<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; I&#39;m sorry, I don&#39;t see any substantive difference, based on what you&#39;ve<br class="gmail_msg">
&gt;&gt;&gt; written here, between this feature and const.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; Let me give it one more shot and then I’ll drop it.  :)<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; Const is viral because if an API does not declare its arguments const<br class="gmail_msg">
&gt;&gt; it cannot be used by a caller who has a const argument.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Unless the caller casts away const, thus erasing information that was<br class="gmail_msg">
&gt; previously encoded in the type system.<br class="gmail_msg">
<br class="gmail_msg">
Yes, of course.<br class="gmail_msg">
<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt; It is required in order to make an API as generally useful as<br class="gmail_msg">
&gt;&gt; possible.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; Typed errors are not viral in this way because no callers are<br class="gmail_msg">
&gt;&gt; prevented from calling an API regardless of whether it declares error<br class="gmail_msg">
&gt;&gt; types or just throws Error like we have today.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Unless the caller can recover (which is *very* rare) or it catches and<br class="gmail_msg">
&gt; rethrows one of the errors *it* declares, thus erasing information that<br class="gmail_msg">
&gt; was previously encoded in the type system.<br class="gmail_msg">
<br class="gmail_msg">
I view this as being fundamentally different than casting away const.  Casting away const says “I know better than the types”.<br class="gmail_msg">
<br class="gmail_msg">
Converting an error to a different type is extremely different.  It much more similar to any other kind of value wrapper a library might create in order to shield its users from being coupled to its implementation details / dependencies.  This is not a way *around* the type system in the sense that casting away const is.  It is a way of *using* the type system (hopefully) to your advantage.<br class="gmail_msg">
<br class="gmail_msg">
<br class="gmail_msg">
<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt; Pressure to declare error types in your signature in order to make<br class="gmail_msg">
&gt;&gt; your function as generally useful as possible does not exist.  Each<br class="gmail_msg">
&gt;&gt; function is free to declare error types or not according to the<br class="gmail_msg">
&gt;&gt; contract it wishes to expose.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; An argument can be made that community expectations might develop that<br class="gmail_msg">
&gt;&gt; good APIs should declare error types and they could be considered<br class="gmail_msg">
&gt;&gt; viral in this sense because any API that is simply declared `throws`<br class="gmail_msg">
&gt;&gt; is dropping type information.  But I think this overstates the case.<br class="gmail_msg">
&gt;&gt; The community appears to be very sensitive to the problems that can<br class="gmail_msg">
&gt;&gt; arise when error types are too concrete, especially across module<br class="gmail_msg">
&gt;&gt; boundaries.  I think we can learn to use the tool where it works well<br class="gmail_msg">
&gt;&gt; and to avoid it where it causes problems.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; --<br class="gmail_msg">
&gt;&gt;&gt; -Dave<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; --<br class="gmail_msg">
&gt; -Dave<br class="gmail_msg">
<br class="gmail_msg">
_______________________________________________<br class="gmail_msg">
swift-evolution mailing list<br class="gmail_msg">
<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
</blockquote></div></div>