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