* @package generis */ class common_exception_IsAjaxAction extends common_Exception { // --- ASSOCIATIONS --- // --- ATTRIBUTES --- // --- OPERATIONS --- /** * Short description of method __construct * * @access public * @author Cédric Alfonsi, * @param string method */ public function __construct($method = "") { $message = 'The following service (' . $method . ') is an Ajax service'; parent::__construct($message); } }