in reply to Setting a custom hash accessor handle in Moose attribute

Try this:

before 'custom_field' => sub { my $self = shift; if (scalar @_ == 1) { my $key = shift; confess "The field $key does not exist" unless $self->has_custom_field( $key ); } };

-stvn

Replies are listed 'Best First'.
Re^2: Setting a custom hash accessor handle in Moose attribute
by daverave (Scribe) on Oct 25, 2010 at 17:27 UTC
    Thank you.