>> [ERROR] TapestryModule.RequestExceptionHandler Processing of request >> failed with uncaught exception: java.lang.ExceptionInInitializerError >> java.lang.ExceptionInInitializerError >> at >> de.pierosartini.tynamo.services.impl.TynamoComponentClassResolverImpl$6.invoke(TynamoComponentClassResolverImpl.java:462) >> I guess I am doing something wrong... > > Me too. :) The exception is in your code . . . What's in that line? Have you > checked the rest of the stack trace for chained exceptions?
The problem is: My code is just a copy from tapestry's ComponentClassResolverImpl. Only difference is the replacement of ServicesMessages with an equal class named MyMessages. Line 462 is: public String resolveComponentTypeToClassName(final String componentType) { return barrier.withRead(new Invokable<String>() { public String invoke() { String result = locate(componentType, componentToClassName); 462: if (result == null) throw new IllegalArgumentException(MyMessages .couldNotResolveComponentType(componentType, presentableNames(componentToClassName))); --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org