answersLogoWhite

0

Write the class that supposedly "doesn't exist".

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the way to get rid of Java lang no class deffound error?

To get rid of the Java lang no class deffound error, one must add the class or .jar file which contains this class into the Java classpath. When a Java class is run from the command line, one must add a dot (.)


Java runtime error - NoClassDefFoundError -- how to remove this error in java programming?

This error means that there was a call to a nonexistent class, but this was not caught by the compiler since the class existed when the file was compiled but was removed before running the .class file. To fix this problem try restoring any files you deleted to the SAME directory as your .class file. This error can also be fixed by changing the Java classpath to point to the locations of your files. The -cp command line option should help.


What happen if you declare class as recursive?

It will get a compiler error in Java.


What is classes in java?

class is a blueprint which does not have its own existence but it can pass all of its feature to its child classes.


When class definition not found error will occur?

This error occurs when you try to run a java program and the JVM (java virtual machine ) do not found the class file for your program. there are two reasons for this kind of error to occur 1. If you haven't set the CLASSPATH environment variable for the bin directory of your java installation or to the current directory in which you are working, then JVM will never know where to look for the class files you are trying to load and so the error occurs. 2. you may be trying to run your program with a wrong class name which doesn't exist. note: this error doesn't mean that there is any error in your code.


Resolve this error 4 java --Exception in thread main java.lang.UnsupportedClassVersionError milan Unsupported major.minor version 49.0?

The class/jar was compiled with a later major version of java than the version of java you are using to run the code with. So for instance the class was compiled with java 1.5 and you are running the class with java 1.4, which doesn't understand the format of 1.5 class files. check "java -version" from the command prompt.


What are the various functions in iterator class in java?

There are mainly three Methods available in the iterator class in java. Namely they are ... 1. Has Next 2. Next and 3. Remove.


Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


How do you fix error 1721?

I just found out on how to fix the problem Error 1721. Very easy when i saw it. Basically you go on [Control panel]->[Add or Remove progams] Then if it says JAVA 6 update 20 or below, remove it then download Java again! Once download it will work. If it doesnt then thats your prob. If it works, go to [Add or Remove progams] and check if it is Java 6 Update 30. I hoped this helped You Java team for your answer + Any1 who had this problem


What is a java lang unsupported class version error?

This is an error you receive when your Java Virtual Machine or JVM attempts to read a file but the version numbers are not supported. This can happen in cases where your version of JVM is higher than the version used for that file.


What is the error in exception handling in java with example?

class Demo { public static void main(String s[]) { System.out.println("hello java frm Demo"); } } class Demo1 { public static void main(String s[]) { System.out.println("hello java frm Demo1"); String z={" "}; Demo.main(); } }


The actions in a java class are called?

The actions in a java class are called methods.