Example 6-25. Replacing try/catch with promise.catch()


async(function* () {
	var img = yield loadImage('thesis_defense.png');
	console.log('received image');
})().catch(function (err) {
	console.log('caught in rejection handler');
	console.log(err);
});