C Sharp (C#) - Exception Handling
Identify the error in this C# code snippet:
try { int x = 10; int y = 0; int z = x / y; } catch { Console.WriteLine("Error caught"); }