tao-test/app/generis/common/exception/class.ExceptionHandler.php

18 lines
318 B
PHP
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?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);
}