Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Run time Error

Hi,
    I just wrote the program using this IDE. Its compiled fine but when I ran it, I got the following error:
 

java.lang.NoClassDefFoundError: BitStringTest

Exception in thread "main"

The following is the code of BitStringTest.java program:

class BitStringTest

{

public static void main (String[] args)

{

test (new BitStringFactoryArray ());

}

 

static void test (BitStringFactory bsf)

{

BitString s1, s2, s3, s4, s5;

s1 = bsf.newBitString (64);

System.out.println (s1);

}

}

 

Any ideas?

Sandeep


Back to the top