file java\lang\NoClassDefFoundError.class not found
i am trying to compile a class using jaavc 5.0 for midp using -target cldc1.0 and -bootclasspath which points to all the midp classes
even though the NoClassDefFoundError.class was introduced only from cldc1.1 while i am compiling my class the compiler generates the code with NoClassDefFoundError.class. and becuase of that i am getting compilation errro.
why does the compiler generates a byte code containing this NoClassDefFoundError.class which is not part of cldc1.0 and ignore my -taget flag?

