Sha256: 90aefb27cf74baf11bf4c3ca06b0d2cf983d735f899aa76337d29cef81120053
Contents?: true
Size: 373 Bytes
Versions: 18
Compression:
Stored size: 373 Bytes
Contents
package Moose::Exception::BothBuilderAndDefaultAreNotAllowed; our $VERSION = '2.2203'; 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
18 entries across 9 versions & 1 rubygems