Sha256: 60df19d2b9bdb6b2d0c556ad611adda2e8f5a17311e878cd57a0c10fda6a69ab
Contents?: true
Size: 373 Bytes
Versions: 14
Compression:
Stored size: 373 Bytes
Contents
package Moose::Exception::BothBuilderAndDefaultAreNotAllowed; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::ParamsHash'; has 'class' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { "Setting both default and builder is not allowed."; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems