NoClassDefFoundError means that the class was present in the classpath at compile time. Tomahawk has an import javax.faces.FacesException; line import javax.faces.FacesException; in the code base. This is one of the core JSF API classes.
This means that the JSF libraries are missing from the webapp class path. The project was in Netbeans, which seems to be connected to a server that is already connected to JSF, such as Glassfish, JBoss AS, etc. The project in Eclipse does not seem to be properly connected to the server, or the server in question does not have JSF bundled, such as Tomcat, Jetty, etc.
The stacktrace hints that you are using Tomcat. You need to download the JSF separately and drop the JAR files into webapp /WEB-INF/lib (where your Tomahawk libraries are also).
Balusc
source share