| Article: |
Using Java to Expand iTunes Functionality | |
| Subject: | Difficulty in origional start up | |
| Date: | 2004-02-24 10:30:42 | |
| From: | shkidafrigadoo | |
| I've been typing in the string java com. fivevoltlogic... and my termial tells me that there's an "Exception in thread "main" java.lang.NoClassDefFoundError: com/fivevoltlogic/mytunes/MyTunesLibrary" How do i get around that? | ||
Showing messages 1 through 1 of 1.
-
Difficulty in origional start up
2004-02-25 08:14:32 David Miller |
[View]
The NoClassDefFoundError is being thrown because of one of the following situations:- The class com.fivevoltlogic.mytunes.MyTunesLibrary can not be found on your classpath; the easiest way to resolve this situation is to place mytunes.jar in your /Library/Java/Extensions folder so that it will be visible.
- The class is located on your classpath, but you are mistyping the fully qualified class name; the only way to resolve this is to make sure that you are typing the name correctly.


