I'm making a game where there is an inventory class which handles items
each item is its own object
there is a list of items in the inventory class
there are methods that modify the item list
these methods throw exceptions
this means that whenever I call those methods in another method, the latter method has to throw the exceptions as well
I want to use the item list modificatio methods in the act method of other classes, but i can because i cant override the act method.
what do i do?

