Question: Define an exception class called Too Much Stuff Exception. The class should have a constructor with no parameters. If an exception is thrown with this zero argument constructor, get Message should return "Too much stuff!" The class should also have a constructor with a single parameter of type String. If an exception is thrown with this constructor, then get Message returns the value that was used as an argument to the constructor.