<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>idea Add Error Handling Try Catch to Arcade Language in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idi-p/1047180</link>
    <description>&lt;P&gt;Like any language Arcade should have error handling functionality.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be help full to have a Try Catch and be able to get the error description&lt;/P&gt;&lt;P&gt;try {&lt;/P&gt;&lt;P&gt;...code&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;catch (err){&lt;/P&gt;&lt;P&gt;...code&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Mar 2022 21:58:43 GMT</pubDate>
    <dc:creator>SylvainHotte2</dc:creator>
    <dc:date>2022-03-03T21:58:43Z</dc:date>
    <item>
      <title>Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idi-p/1047180</link>
      <description>&lt;P&gt;Like any language Arcade should have error handling functionality.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be help full to have a Try Catch and be able to get the error description&lt;/P&gt;&lt;P&gt;try {&lt;/P&gt;&lt;P&gt;...code&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;catch (err){&lt;/P&gt;&lt;P&gt;...code&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 21:58:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idi-p/1047180</guid>
      <dc:creator>SylvainHotte2</dc:creator>
      <dc:date>2022-03-03T21:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047215#M15707</link>
      <description>&lt;P&gt;This is a &lt;EM&gt;great&lt;/EM&gt; idea, I would use this all the time.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 19:16:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047215#M15707</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-04-14T19:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047278#M15709</link>
      <description>&lt;P&gt;Thanks for raising the idea, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/427695"&gt;@SylvainHotte2&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;. We've discussed various plans for adding more error management within Arcade.&lt;/P&gt;&lt;P&gt;We'd be interested in what scenarios you have in mind? For instance:&lt;/P&gt;&lt;P&gt;- catching when something has gone wrong within a library function?&lt;/P&gt;&lt;P&gt;- your own script logic throwing exceptions to be caught in an outer scope of the script?&lt;/P&gt;&lt;P&gt;- being able send your own error/exception information out of the script for the application to receive/log/act on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 20:32:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047278#M15709</guid>
      <dc:creator>RichardJShepherd</dc:creator>
      <dc:date>2021-04-14T20:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047629#M15714</link>
      <description>&lt;P&gt;Currently I use Arcade in attribute rules. I use the a lot the {"errorMessage":"a message to the user"} to send back error to the user telling them what is the cause of the error.&lt;/P&gt;&lt;P&gt;However, a try catch would be helpful to capture runtime error and send a more descriptive message. Here an Example. In that code sample we validate (Constraint Rule) the the new value the user entered really exist in an other table (we validate the relationship). I edit the code to simplify the example.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SylvainHotte2_1-1618500926891.png" style="width: 716px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/11005i16611F143E213381/image-dimensions/716x246?v=v2" width="716" height="246" role="button" title="SylvainHotte2_1-1618500926891.png" alt="SylvainHotte2_1-1618500926891.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In this example, If the Filter returns nothing then First return Null. To prevent a runtime error I need to check for null before getting the .STATUS_CODE attribute. Depending on code there could be many of those kind of check. Also, it might be something wrong with a library, or something we did not think of. I would rewrite like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SylvainHotte2_2-1618501337406.png" style="width: 718px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/11006i23D1F62465850A25/image-dimensions/718x243?v=v2" width="718" height="243" role="button" title="SylvainHotte2_2-1618501337406.png" alt="SylvainHotte2_2-1618501337406.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In other scenario I written function in my arcade script (ex: recursive, reuse code, etc) I might also be interesting to be able to throw Exception instead of outputting and array like having the first element a Boolean for success or Fail, and the second for the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for sending My own Exception outside I recently see that now the full attribute rule error message we see in pro is not sent to the .Net SDK. That is good. If you could go a step further and being able to the the detail in an object (Rule Name, Error Code, Error Description, etc ) but I guess I can deserialize the Json my self. I also notice the tools like FME does not report error correctly when the is an attribute rule constraint. The is just an generic error message the the message part is just {}.&amp;nbsp;&lt;/P&gt;&lt;P&gt;While I have your attention, I know we are not Christmas yet, but I will be fun to be able to build our own Arcade Function Library&amp;nbsp; and Import them in the Arcade Script. Let say I create a advance TitleCase function, or other generic function that I use in many other script, Instead of copy paste the function, I could just create a library and import it. I could event share those libraries to others.&lt;/P&gt;&lt;P&gt;Hope it give a more detail idea of what I had in mind&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sylvain&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 15:55:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1047629#M15714</guid>
      <dc:creator>SylvainHotte2</dc:creator>
      <dc:date>2021-04-15T15:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286031#M24841</link>
      <description>&lt;P&gt;Absolutely agree that having error trapping (e.g. try/catch) is an essential requirement. This is both for capturing unexpected errors from library functions and for capturing errors within our own code. Without this capability, if we use arcade to do anything slightly more complex, end users can end up with a poor user experience when things go wrong.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 09:10:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286031#M24841</guid>
      <dc:creator>JohnFannon</dc:creator>
      <dc:date>2023-05-05T09:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286034#M24842</link>
      <description>&lt;P&gt;This gets my vote too! Real nightmare handling errors in arcade...&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 09:23:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286034#M24842</guid>
      <dc:creator>DougC</dc:creator>
      <dc:date>2023-05-05T09:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286221#M24847</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/451080"&gt;@RichardJShepherd&lt;/a&gt;&amp;nbsp; Would be great in SmartForms.&amp;nbsp; If a field calculation in Arcade errors out it locks up the SmartForm and refuses to allow the user to submit the feature because having a calculation on a field there makes that field a required field.&amp;nbsp; Unlike in Survey123, there is no "Save Draft" option.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 16:22:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1286221#M24847</guid>
      <dc:creator>sofoo</dc:creator>
      <dc:date>2023-05-05T16:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1408247#M29336</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/451080"&gt;@RichardJShepherd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Another case where this would very useful is catching errors to portal functions such as GetUser() because these methods raise an error when Attribute Rules are triggered by a Server User with a REST token.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For example, the following line in one of our Attribute Rules causes an error when edits are made by an automated integration with SAP using a token at the /applyEdits REST Endpoint.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;var devPortalUser = GetUser()&lt;BR /&gt;&lt;BR /&gt;We should have an ability to do this:&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;var devPortalUser = GetUser()&lt;/P&gt;&lt;P&gt;except:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; \\Do Something&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 23:19:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1408247#M29336</guid>
      <dc:creator>DWarburg_Locana</dc:creator>
      <dc:date>2024-04-10T23:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560731#M32944</link>
      <description>&lt;P&gt;Absolutely agree a try-catch should be included.&lt;/P&gt;&lt;P&gt;Having a similar problem to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/710018"&gt;@DWarburg_Locana&lt;/a&gt;&amp;nbsp;&amp;nbsp;with GetUser() returning an error for users no longer in the portal when returning track edits in an archive service.&lt;/P&gt;&lt;P&gt;This is just for a popup rather than to apply edits, so is not critical, but would allow the ability to indicate the user no longer exists rather than simply failing to return a value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 14:24:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560731#M32944</guid>
      <dc:creator>DeanMoiler</dc:creator>
      <dc:date>2024-11-20T14:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560825#M32949</link>
      <description>&lt;P&gt;This would be useful, especially for crappy programmers like myself. I frequently forget to test for NULL values in variables, and as a result, my attribute rules crash, and users can't make particular edits.&lt;/P&gt;&lt;P&gt;A catch block would allow me to gracefully fail the edit, possibly send more useful information to the editor, and log the failure.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 17:10:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560825#M32949</guid>
      <dc:creator>DrewDowling</dc:creator>
      <dc:date>2024-11-20T17:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560934#M32953</link>
      <description>&lt;P&gt;YES, please.&amp;nbsp; Got my vote.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 19:26:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1560934#M32953</guid>
      <dc:creator>JodiLuostarinen</dc:creator>
      <dc:date>2024-11-20T19:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1561099#M32959</link>
      <description>&lt;P&gt;One more vote!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 03:07:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1561099#M32959</guid>
      <dc:creator>LanceKirby2</dc:creator>
      <dc:date>2024-11-21T03:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1572083#M33387</link>
      <description>&lt;P&gt;A try/catch capability would potentially help with the goal of capturing whether the current user has access to a data source, and if not, then return a message in a List widget, rather than popping up the login dialog.&lt;/P&gt;&lt;P&gt;For example, one could wrap&amp;nbsp;FeatureSetByPortalItem with a try/catch to handle the error returned when a user does not have access to a portal item.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 14:41:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1572083#M33387</guid>
      <dc:creator>PeterKnoop</dc:creator>
      <dc:date>2025-01-02T14:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1574095#M33444</link>
      <description>&lt;P&gt;YES, Please do this.&lt;/P&gt;&lt;P&gt;Here is an Arcade expression code snippet where an error trap would be useful. (This is part of an Arcade expression used to populate an enterprise portal WebMap popup.) As it is, the expression executes fine when one or more features satisfy the filter condition, but fails (ie returns nothing) when no features are found:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var returnText = "ipsum dolorum";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var allFeatures = FeatureSetByPortalItem(port, mapID, layerID);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var where = 'CNTRCT_ID=&amp;lt;some value&amp;gt;';&lt;/P&gt;&lt;P&gt;var foundFeatures = Filter(allFeatures, where); // code fails at this point&lt;/P&gt;&lt;P&gt;if (foundFeatures == null)&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;returnText = "No features found";&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;returnText = Count(foundFeatures) + " features were found";&lt;/P&gt;&lt;P&gt;return returnText;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 19:14:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1574095#M33444</guid>
      <dc:creator>DavidStewart3</dc:creator>
      <dc:date>2025-01-09T19:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1614241#M34738</link>
      <description>&lt;P&gt;Interestingly, &lt;A href="https://developers.arcgis.com/arcade/guide/reserved/#future-keywords" target="_self"&gt;Esri has reserved some relevant keywords in Arcade&lt;/A&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jrosacker_1-1747167085892.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/132100i1027629E2A3B15DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jrosacker_1-1747167085892.png" alt="jrosacker_1-1747167085892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hopefully this idea gets approved!&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 20:12:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1614241#M34738</guid>
      <dc:creator>jrosacker</dc:creator>
      <dc:date>2025-05-13T20:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1645643#M36016</link>
      <description>&lt;P&gt;Yes, please.&lt;/P&gt;&lt;P&gt;It is how I want to use it.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;function&lt;/SPAN&gt; &lt;SPAN&gt;ToDateSafe&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;val&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;null&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;try&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;val&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;catch&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;err&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;null&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 26 Aug 2025 15:02:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1645643#M36016</guid>
      <dc:creator>HuajunChenGarland</dc:creator>
      <dc:date>2025-08-26T15:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1681440#M37347</link>
      <description>&lt;P&gt;Yes, need!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 13:24:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1681440#M37347</guid>
      <dc:creator>JBH</dc:creator>
      <dc:date>2026-02-02T13:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add Error Handling Try Catch to Arcade Language</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1681491#M37349</link>
      <description>&lt;P&gt;+1 to this thread.&lt;/P&gt;&lt;P&gt;Without a way to explicitly handle failures, engineers are forced to rely on defensive patterns and implicit failure behavior. This makes logic harder to test, harder to audit, and harder to build on top of, and harder to fix — especially when expressions cannot be easily executed or tested outside the platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 15:47:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-error-handling-try-catch-to-arcade-language/idc-p/1681491#M37349</guid>
      <dc:creator>RobinKurosawa</dc:creator>
      <dc:date>2026-02-02T15:47:46Z</dc:date>
    </item>
  </channel>
</rss>

