- Registriert
- 27.11.16
- Beiträge
- 3
Hallo Zusammen, ich musste mein macbook neu aufsetzen und jetzt geht jedesmal beim neu starten ein TextEdit-Fenster auf mit folgendem Inhalt:
package Moose::Exception::CallingMethodOnAnImmutableInstance;
BEGIN {
$Moose::Exception::CallingMethodOnAnImmutableInstance::AUTHORITY = 'cpan:STEVAN';
}
$Moose::Exception::CallingMethodOnAnImmutableInstance::VERSION = '2.1202';
use Moose;
extends 'Moose::Exception';
has 'method_name' => (
is => 'ro',
isa => 'Str',
required => 1
);
sub _build_message {
my $self = shift;
"The '".$self->method_name."' method cannot be called on an immutable instance";
}
1;
kann mir jemand sagen, was das ist und warum es immer aufgeht??? Danke euch !!
package Moose::Exception::CallingMethodOnAnImmutableInstance;
BEGIN {
$Moose::Exception::CallingMethodOnAnImmutableInstance::AUTHORITY = 'cpan:STEVAN';
}
$Moose::Exception::CallingMethodOnAnImmutableInstance::VERSION = '2.1202';
use Moose;
extends 'Moose::Exception';
has 'method_name' => (
is => 'ro',
isa => 'Str',
required => 1
);
sub _build_message {
my $self = shift;
"The '".$self->method_name."' method cannot be called on an immutable instance";
}
1;
kann mir jemand sagen, was das ist und warum es immer aufgeht??? Danke euch !!