1 2 3
4
5
Question #5
Dropdown
Suppose you are writing a program to sell tickets to a concert. The maximum number of tickets available is 400.
You created your own error type.
class Over400Error(Exception):
pass
What is the missing term in the code that handles that error?
if tickets > 400:
(Raise, Catch, detect) over400Error