Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'run' defined in file [E:\Github\Etaron\et-game\target\classes\com\dalthow\etaron\base\Run.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.dalthow.etaron.base.Run]: Constructor threw exception; nested exception is java.lang.NullPointerException
  2. at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:278)
  3. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1114)
  4. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1017)
  5. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:504)
  6. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:475)
  7. at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:304)
  8. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
  9. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:300)
  10. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:195)
  11. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:703)
  12. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:760)
  13. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:482)
  14. at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)
  15. at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83)
  16. at com.dalthow.etaron.Launcher.main(Launcher.java:39)
  17. Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.dalthow.etaron.base.Run]: Constructor threw exception; nested exception is java.lang.NullPointerException
  18. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:164)
  19. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:125)
  20. at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:270)
  21. ... 14 more
  22. Caused by: java.lang.NullPointerException
  23. at com.dalthow.etaron.state.Splash.init(Splash.java:193)
  24. at org.newdawn.slick.state.StateBasedGame.init(StateBasedGame.java:171)
  25. at org.newdawn.slick.AppGameContainer.setup(AppGameContainer.java:393)
  26. at org.newdawn.slick.AppGameContainer.start(AppGameContainer.java:317)
  27. at com.dalthow.etaron.base.Run.<init>(Run.java:22)
  28. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  29. at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
  30. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
  31. at java.lang.reflect.Constructor.newInstance(Unknown Source)
  32. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:148)
  33. ... 16 more
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement