The underlying implementation has failed. Find out more in your console log or file an issue in the bug tracker for your browser that has failed.
Sample using Promise.catch()
doSomeDatabaseWork().then(result => {
// Success
}).catch('InternalError', e => {
// Failed with InternalError
console.error ("Internal error: " + e.message);
}).catch(Error, e => {
// Any other error derived from standard Error
console.error ("Error: " + e.message);
}).catch(e => {
// Other error such as a string was thrown
console.error (e);
});