Fix bug in t/20-exception.t.
Now correctly handles
sub bar :ForceEval(Handle::Error->baah)
which will dispatch $? via the specified method.
Add use 5.006 to Makefile.PL to avoid
5.005 test failures.
Handle void context explicitly in calling the wrapped sub.
Take out "wrapping" message.
POD
Push 'can' check for handler to runtime to avoid extraneous warnings due to module loading order.
use "Class->method" or "Package::name" to allow non-OO calls for handling $@.
Remove leftover $DB::single = 1;
POD
Handle AUTOLOAD's. This requires exporting a single $AUTOLOAD from the wrapping package into the wrapped one so that $AUTOLOAD is available in the wrapper. see also t/30*.t.
Add test for exception wrappers.
Check $@->isa( constructor's package ) to avoid wasted constructor calls.
POD, no code changes.
Add method argument to use or attribute handler as a way to automatically bless $@ for OO exception handling.
Initial release