Pp. 262 (no. 315)
This code sample is adapted from Clifford B. Anderson and Joseph C. Wicentowski, XQuery for Humanists (College Station: Texas A&M University Press, 2020), 262. Download this code sample in its raw form. View the source on GitHub.
xquery version "3.1";
declare function local:fetch-data($URI as xs:string) as document-node() {
fn:error()
};
try
{
local:fetch-data("https://archive.org/metadata/heirofredclyffe00yong")
}
catch *
{
"I caught this error: " || $err:code ||
" with this description: " || $err:description
}