- or download this
my $class = shift;
...
$self->{_myOwnattributes} = $that;
bless($self, $class);
- or download this
sub funcA{
eval { $self->SUPER::funcA(); };
_handle_eval($self);
}
- or download this
funcA{
$self = shift;
Yada Yada Yada....
$self->funcB();<--- Which I had also overridden!!
}