use Error qw(:try);
use MyExceptionClassDescendentOfErrorSimple;
use Moose;
try {
_CallMethod();
}
catch MyExceptionClassDescendentOfErrorSimple with {
my $ex = shift;
print "ex";
}
This will not compile, if I remove 'use Moose', it works fine.
Has anyone used moose with exception another exception handling module ?
If moose is a complete object system, it ought to allow the use of an
exception mecganism !