in reply to Re: Strack traces with Exception::Class
in thread Strack traces with Exception::Class

Hopefully, this isn't too old to post to.

I just had to solve this problem myself. I wanted all exceptions to show stack traces all the time. Since Trace($boolean) is a class method, I just did this (see below) once, and it worked for all child/sub classes and their objects.

Exception::Class::Base->Trace(1);

I put that right after my use statement.