C Sharp (C#) - Exception Handling
Identify the error in this code snippet:
try {
// some code
} catch (Exception ex) {
Console.WriteLine("Error caught");
} catch (ArgumentNullException ex) {
Console.WriteLine("Null argument");
}