Re: [Ironruby-core] How to access the inner exception information from .NET exceptions?

2011-01-26 Thread Sick Boy
Answered my own question after inspecting the exception methods, and the .NET System.Exception class. Base/Inner exception seems to be what I was mostly after: logger.debug [ "#{e.class}: #{e.message}", "Base Exception: #{e.GetBaseException}", "Inner Exception: #{e.InnerExcept

[Ironruby-core] How to access the inner exception information from .NET exceptions?

2011-01-26 Thread Sick Boy
Hi, I am wondering how I can expose the inner exception information within IronRuby. My program is throwing an exception only on one user's computer, the exception originates in a SelectItem method in WPF RibbonControlsLibrary, ComboBox. I am able to catch the exception and log it, by using