Customer Portal

java.lang.NoClassDefFoundError

Comments 2

  • Avatar
    imriskal
    0
    Comment actions Permalink
    As the step #1, upgrade your CloverETL Server to the version matching with Designer, please. Incompatible versions (even minor versions) often result into unpredictable errors.

    If the problem persists, let me know.
  • Avatar
    bennetcole
    0
    Comment actions Permalink
    java.lang.NoClassDefFoundError This exception indicates that the JVM looked in its internal class definition data structure for the definition of a class and did not find it. This is different than saying that it could not be loaded from the classpath. Usually this indicates that we previously attempted to load a class from the classpath, but it failed for some reason - now we're trying to use the class again (and thus need to load it, since it failed last time), but we're not even going to try to load it, because we failed loading it earlier (and reasonably suspect that we would fail again). The earlier failure could be a ClassNotFoundException or an ExceptionInInitializerError (indicating a failure in the static initialization block) or any number of other problems. The point is, a NoClassDefFoundError is not necessarily a classpath problem.

Please sign in to leave a comment.