Exception

Hello togehter!

When I run my program I just get the following exception:

#

# An unexpected error has been detected by HotSpot Virtual Machine:

#

# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c901010, pid=2820, tid=3180

#

# Java VM: Java HotSpot(TM) Client VM (1.4.2_10-b03 mixed mode)

# Problematic frame:

# C [ntdll.dll+0x1010]

#

# An error report file with more information is saved as hs_err_pid2820.log

#

# If you would like to submit a bug report, please visit:

#http://java.sun.com/webapps/bugreport/crash.jsp

#

Can anybody tell me why that happens.

Thanks a lot.

Markus

[697 byte] By [Markus1982a] at [2007-11-26 15:44:44]
# 1

The VM crashed.

Something did something that it shouldn't have.

Usually this is due to one of the following.

1. Your JNI code or a third party library that used JNI.

2. A ODBC driver (not java) (which technically is still 1 above.)

3. A combination of java, graphics card, graphics driver and fonts.

4. An actual bug in the VM.

4 is the least likely.

jschella at 2007-7-8 22:03:51 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2

Just a slight addition to jschell's post: since the error is # Problematic frame:

# C [ntdll.dll+0x1010]

one can tell that the JVM has called into the Windows runtime libraries, which have tripped over something. I might be able to tell more if you posted the whole hs_err_pid2820.log file, but I doubt it will be much the JVM can do about it.

PeterKesslera at 2007-7-8 22:03:51 > top of Java-index,Java HotSpot Virtual Machine,Specifications...