corrects try/catch

This commit is contained in:
Hyatt 2023-10-22 11:32:26 -05:00
parent 9647e859ba
commit 2456d6daa0
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -110,11 +110,14 @@ pipeline {
| base64 -w 0
"""
)
} catch(e) {
// check for error
if (openVPNConfig.length() == 0 || openVPNConfig == "") {
printf("Bad nordURL: %s", nordURL)
throw e
throw new Exception(nordURL)
}
} catch(e) {
println(sprintf("Bad nordURL: %s", nordURL))
throw e
}
}