<snip>
> This exception is being catched in the upper unit which called this code
>
[quoted text clipped - 5 lines]
>
> I can see only the last console print and not the Inner exception.
Well the code above doesn't use *any* of the information about the
exception, beyond the fact that it happened at all.
> Is there any way to build my exceptios in a way that I will see the full
> exception without printing the inner one?
If you print ex.ToString(), you'll get all the stack traces and
messages.
Jon