Is this valid async/await logic: calling try/catch from within another try/catch?
//within async function...
try {
await asyncFunctionFirst();
} catch (errFirst) {
try {
await asyncFunctionSecond();
} catch (errSecond) {
// return errSecond response
}
//return errFirst response
}
//return response ok