UCWare.com

Technical support

Typical errors

0x10000223 - java.lang.ClassNotFoundException

Thrown when your application tries to load in a class through its string name, but no definition for the class with the specifed name could be found.

To resolve this issue:
  • Make sure the class exists and has been compiled into the .class file;
  • If the string name of your class is the same as "Main-class", make sure that your class has been declared "public";
  • You must list the class (or the JAR file containing the class) on the class path (See the "Classpath" tab in JEXECreator.) Alternatively, you can add the JAR file into the EXE file.

0x10000228 - java.lang.IllegalAccessException

Thrown when an application tries to load in a class, but classloader does not have access to the definition of the specified class, because the class is not public and in another package.

To resolve this issue:
  • Make sure that the class you specified as "Main-class" has been declared "public". Class declaration in this case will look like this: "public class ClassName".