ExceptionInInitializerError
Hello,
I work with JBoss on a Redhat 9.0 SMP on a bi-processor computer, and i've deployed an application under this environnement.
This application is composed of an EJB jar file and and EAR file.
And when i made an XML parsing, (apparantly), i have this error : java.lang.ExceptionInInitializerError.
So i installed the same Redhat 9.0 (not SMP) and JBoss System on a one processor computer, and the application is running very well.
If someone already have this problem ?
Thanks for your help.
Philippe
Did a constructor, instance variable initialized with a new keyword or a static initializer have an exception thrown? I think the latter two are more likely (may have forgotten, but I think constructor exceptions get an InstantiationException). But the ExceptionInInitializer indicates that your object did not properly instantiate due to another exception.
For example, if you parsed the XML in a static intialzier or in an instance variable intiializer, you would get this message.
- Saish
"My karma ran over your dogma." - Anon
Saish at 2007-6-29 14:59:53 >
