In the following Python error message, what is the exception type, and what line did the error occur on?

RESTART: C:/Users/python/c110.py

Traceback (most recent call last):

File " C:/Users/python/c110.py ", line 3, in <module>

print(num/div)

ZeroDivisionError: division by zero

The exception type is ZeroDivisionError and the error occurred on line 3.