1<?php 2class Parser { 3 function process(&$data) { 4 die("Oops! Unoverridden 'process' method called in ".get_class($this)); 5 } 6} 7?>