Page MenuHomePhorge

test_error_catch.js
No OneTemporary

Size
266 B
Referenced Files
None
Subscribers
None

test_error_catch.js

Promise.reject(new Error('Promise Test error')).catch(console.error);
try {
throw new Error('try-catch test error');
} catch (err) {
console.error(err);
}
async function testAsync() {
throw new Error('Async test error');
}
testAsync().catch(console.error);

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 9:52 AM (7 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
523461
Default Alt Text
test_error_catch.js (266 B)

Event Timeline