How do you trap a legitimate time-out with wix fetch? In the console.log I get the error: "WebMethod request timed-out after 14 seconds... "

This:

 try {
 return fetch(url, {method: 'get'})
        .then(response => response.json())
        .catch(err => console.log(".catch err: " + err));

    } catch (err) {
        console.log("try .catch err: " + err)
    }

Still results in this;