Problem
Make a class definition for a class called OddNumberError which is a child class of ValueError. Redefine the str() method to return the following string, "Odd Number Exception. I am being printed from the str() method". Then make e a try/except statement which accepts an integer from the user. If this integer is an odd number, raise an OddNumberError exception. The appropriate except block should then print the message returned by the exception object. Your code need not anything else.