Am trying to Run a Java Application, where the Error thrown is
5 18:38:06,271 ERROR [STDERR] Caused by: java.lang.NoClassDefFoundError: com/lucene/search/LuceneSearchModule (wrong name: com/util/search/LuceneSearchModule)
2013-05-05 18:38:06,271 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
Below is my Java Program Code which calls the method -
package com.lucene.index;
import com.lucene.search.LuceneSearchModule;
public class LuceneAccess
{ ....
LuceneSearchModule.get(....);
... }
package com.lucene.search;
public class LuceneSearchModule
{ .... }
I have placed the LuceneSearchModule class file under com/lucene/search & com/util/search,, but not sure why the error is thrown