The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Moose::Exception::CannotCallAnAbstractMethod;
our $VERSION = '2.1802';

use Moose;
extends 'Moose::Exception';

sub _build_message {
    "Abstract method";
}

1;