Your IP : 216.73.216.74


Current Path : /lib64/perl5/vendor_perl/Moose/Exception/
Upload File :
Current File : //lib64/perl5/vendor_perl/Moose/Exception/CanReblessOnlyIntoASuperclass.pm

package Moose::Exception::CanReblessOnlyIntoASuperclass;
our $VERSION = '2.2011';

use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::Class', 'Moose::Exception::Role::Instance', 'Moose::Exception::Role::InstanceClass';

sub _build_message {
    my $self = shift;
    "You may rebless only into a superclass of (".blessed( $self->instance )."), of which (". $self->class_name .") isn't."
}

__PACKAGE__->meta->make_immutable;
1;