* @package generis */ class common_exception_Error extends common_Exception implements common_log_SeverityLevel { /** * Get the severity of the error. * * @access public * @author Joel Bout, * @return int */ public function getSeverity() { $returnValue = (int) 0; $returnValue = common_Logger::ERROR_LEVEL; return (int) $returnValue; } }