summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm
blob: e6c2a41a8f8c0e24493ddc7534c4c2c097109bfa (plain)
1
2
3
4
5
6
7
8
9
10
11
package Moose::Exception::NeitherClassNorClassNameIsGiven;
our $VERSION = '2.1405';

use Moose;
extends 'Moose::Exception';

sub _build_message {
    "You need to give class or class_name or both";
}

1;