WinDbg (correct value):
```
0:000> .frame 0n9;dv /t /v
09 00000000`0029cb60 00000001`3f769d05 VCRUNTIME140!_CxxThrowException+0xc2 [f:\dd\vctools\crt\vcruntime\src\eh\throw.cpp @ 136]
@r14 void * pExceptionObject = 0x00000000`0029cc00
<...>
0:000> ? @r14
Evaluate expression: 2734736 = 00000000`0029ba90
```
PyKd:
```
>>> print getStack()[9].getParam("pExceptionObject")
Ptr Void* at @r14 Value: 0x29ba90 (2734736)
```
Comments: ** Comment from web user: EreTIk **
```
0:000> .frame 0n9;dv /t /v
09 00000000`0029cb60 00000001`3f769d05 VCRUNTIME140!_CxxThrowException+0xc2 [f:\dd\vctools\crt\vcruntime\src\eh\throw.cpp @ 136]
@r14 void * pExceptionObject = 0x00000000`0029cc00
<...>
0:000> ? @r14
Evaluate expression: 2734736 = 00000000`0029ba90
```
PyKd:
```
>>> print getStack()[9].getParam("pExceptionObject")
Ptr Void* at @r14 Value: 0x29ba90 (2734736)
```
Comments: ** Comment from web user: EreTIk **
Same problem for x86 target:
```
0:000> .frame 0n10;dv /t /v
0a 0014ccc8 001a6568 VCRUNTIME140!_CxxThrowException+0x65 [f:\dd\vctools\crt\vcruntime\src\eh\throw.cpp @ 131]
@ebx void * pExceptionObject = 0x0014cce0
<...>
0:000> ? @ebx
Evaluate expression: 0 = 00000000
```
```
>>> print getStack()[10].getParam("pExceptionObject")
Ptr Void* at @ebx Value: 0x0 (0)
```