I've been working on a program and everything was working fine, except now I'm getting a ClassNotFoundException for no reason I can trace. What would cause this?
I'm trying to call a method from another class in the same package which has always worked fine before. I can put my code up, but the program is pretty big so not sure where to start. Basically, I have a class called minAndMax which has a static method I want to use, it's when I try to access that withe the following code:
double minTest = minAndMax.findMinimum(test);
It throws the ClassNotFoundException. Please help, I have to have this finished next week, it was all going fine until this happened