18 lines
318 B
PHP
18 lines
318 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* To change this template, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Description of ExceptionHandler
|
||
|
*
|
||
|
* @author plichart
|
||
|
*/
|
||
|
abstract class common_exception_ExceptionHandler
|
||
|
{
|
||
|
//put your code here
|
||
|
abstract public function handle(common_Exception $exception);
|
||
|
}
|