blob: d61073cc08331774e9230b75456c9b34e39464d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package Moose::Exception::SingleParamsToNewMustBeHashRef;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
sub _build_message {
"Single parameters to new() must be a HASH ref";
}
1;
|