PHP - Error and Exception Handling
Identify the error in this PHP code snippet:
try {
throw new Exception("Error!");
} catch (Exception $e) {
echo $e->message();
}