Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
A と B という 2 つの異なるタスクがあります。A が失敗した場合は、B を呼び出す必要があります。
私は方法を見つけました(同じ問題に遭遇した人のために)
<trycatch> <try> <call target="A" /> </try> <catch> <call target="B" /> </catch> </trycatch>