problem with exceptions

Dmitri via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Oct 2 05:18:34 PDT 2015


On Friday, 2 October 2015 at 11:44:21 UTC, steven kladitis wrote:
> C:\d\examples>pb2
> =>main's first line
>   =>makeOmelet's first line
>     =>prepareAll's first line
>       =>prepareEggs's first line
> object.Exception at pb2.d(64): Cannot take -8 eggs from the fridge
> ----------------
> 0x00402252
> 0x0040512F
> 0x00405043
> 0x00403E48
> 0x7600338A in BaseThreadInitThunk
> 0x77A497F2 in RtlInitializeExceptionChain
> 0x77A497C5 in RtlInitializeExceptionChain
>
>
> ----- I always see the info at the bottom. Is this normal. I 
> was thinkig I should only the the exception message itself.
> ---  this is windows 7 32 bit.

that would the stack of the thread leading up to the exception. I 
think you get that if you dump the exception object itself (not 
just the message).


More information about the Digitalmars-d-learn mailing list