Link to home
Start Free TrialLog in
Avatar of TheMeeser
TheMeeser

asked on

Problem with IOExceptions

How do I get rid of this error?

cannot find symbol
symbol  : class IOException
location: class SPPScreen
        catch( IOException ex) {
               ^

I have a try and a catch. In the sample code they do it the same way that I am.

catch( IOException ex) {
            Status.show("Error: " + ex.getMessage());
        }

Why do I get this error and how do I fix it?
ASKER CERTIFIED SOLUTION
Avatar of bglodde
bglodde
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TheMeeser
TheMeeser

ASKER

Thanks.. I had accidently deleted it along with some other files that I no longer needed.