http://www.perlmonks.org?node_id=675049

glide has asked for the wisdom of the Perl Monks concerning the following question:

Hi!

I'm trying to use the Moose with exceptions. But with the Error I'm having problems with conflicting methods.

example:
package MyA; use Moose; use Error qw(:try); 1;
and when I run
perl -e 'use lib $ENV{PWD}; use MyA;' Prototype mismatch: sub MyA::with (@) vs (&;$) at MyA.pm line 4
Any one it's using Moose with exceptions? Witch package do you use?

many thanks