This question already has an answer here:
I get this really (stupid) error from Java
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: models/modelclass (wrong name: models/ModelClass)
So I am typing in a command at the command line, and I would rather not type the proper case of the class name. I'd like to type "modelclass" instead of "ModelClass".
Is there a way to solve this? Why does this exception exist?!?
The error exists because the standard Java classloaders are case-sensitive to class names.
Three options: