Loading TOC...

xdmp:rethrow

xdmp:rethrow() as empty-sequence()

Summary

Within the catch section of a try-catch expression, re-throw the currently caught error.

Example

  try {
    xdmp:document-delete($uri)
  } catch ($ex) {
    (: ignore documents that aren't there :)
    if ($ex/error:code eq 'XDMP-DOCNOTFOUND') then ()
    else xdmp:rethrow()
  }

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.