Node.js - Error Handling Patterns
Identify the error in this code snippet:
try {
console.log('Start');
throw 'Error happened';
} catch e {
console.log('Caught:', e);
}