Perl Super-Methods

When writing object oriented code, you will most certainly have stumbled across the problem of calling super method explicitly. That need might arise if you have overwritten such a method in the inheriting class but now need the functionality of the super method:

$self->SUPER::method()