Skip Menu |

This queue is for tickets about the WWW-Class CPAN distribution.

Report information
The Basics
Id: 73069
Status: new
Priority: 0/
Queue: WWW-Class

People
Owner: Nobody in particular
Requestors: perl [...] toby.ink
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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.