Python - Custom Exceptions
What will be printed when the following code is executed?
class CustomException(Exception):
pass
try:
raise CustomException('Error occurred')
except CustomException as err:
print(err)