28
AkashM
5y

Best way to handle any exception...

try{
something
} catch(e) {
window.location.href =
"http://stackoverflow.com/search/...]+"
+ e.message;
}

Comments
Add Comment