java.lang.NoClassDefFoundError: org/jdom/JDOMException
It just means that there is no specific class in the runtime class (although it was available in the compiletime class path, which is different from ClassNotFoundException).
The logical next step is to include a particular class (or, moreover, a JAR file with a specific class) in the path to the runtime. Then this error disappeared.
Check your compiletime class path, if any, and add it to the runtime class path. Or, if itβs actually a dependency that you donβt have yet, then itβs good to know that the package name already tells you that you can find and download it at http://jdom.org .
source share