Use a catch block to display the exception thrown in number one above.
What will be an ideal response?
```
catch(Exception e)
{
System.out.println(e.getMessage());
System.exit(0);
}
```
Computer Science & Information Technology