Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MissingResourceException

Status
Not open for further replies.

tzole

Programmer
Mar 21, 2001
3
GR
Hi there.
Does anybody knows what this exception means:
Can't find resource(MissingResourceException)?And how can i avoid this exception.
Thanks in advance
Tzole
 
Hi,

I guessed from your program that you used some resources.

Maybe by putting a try catch would help. For example :

try
{
...
}
catch(MissingResourceException e)
{
System.out.println(e);
}

I am not sure what resources they are but I think it would help if you paste your codes so that I can see better on what it does.

Regards,
Leon If you need additional help, you can email to me at zaoliang@hotmail.com I don't guaranty that I will be able to solve your problems but I will try my best :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top