The throws IOException is for input from a file.
|
feedback
|
|
something like this:
| |||||||||||
feedback
|
|
Classes don't throw exceptions, methods do.
| |||||||||||
feedback
|
|
Classes do not throw IOExceptions, methods do. Your class can implement MouseListener, but those methods (mouseClicked, mousePressed etc...) cannot throw IOExceptions. You'll have to wrap them in a RuntimeException (or a subclass). e.g.
Other methods, like | |||
|
feedback
|