I have several PowerShell script files. a.ps1 'calls' (via dot operator) b.ps1 and c.ps1 scripts.
a.ps1 #main
b.ps1 #helper1 <- need catch error there
c.ps1 #helper2 <- error is being raised there
Is it possible inside b.ps1 file to catch terminating error that was thrown in c.ps1 file?
Thanks.
EDIT
Inside a.ps1:
. .\b.ps1
. .\c.ps1
Inside b.ps1:
trap {
Write-Host "my trap block"
}
Inside c.ps1:
throw "test"
"my trap block" isn't called in this example