2548029 2548029 Today at 1:54 PM Computers and Technology Answered What is the missing word? class TooWide(Exception): pass answer = input('How wide is it? ') width = float(answer) try: if width > 30: TooWide else: print("Have a nice trip!") except TooWide: print("Your luggage will not fit in the overhead bin.")