Subject: | Blessed error is not returned |
Line 91 of WWW::Class 0.03 is:
bless $err, 'WWW::Class::Error';
But $err is never returned to the user.
Frankly though it would probably be better to throw the WWW::Class::Error
object rather than returning it. i.e.
die(bless $err, 'WWW::Class::Error');
Then people can catch it using eval{} or Try::Tiny/TryCatch/etc.