# HG changeset patch # User epgrec@park.mda.or.jp # Date 1269784704 -32400 # Node ID 64b60603d7df93639b885c97dbfd47db101cd0d2 # Parent 4099ae0393ebf5157224b0b06231b7b896e7b06e mod: RecExceptionÄɲà diff -r 4099ae0393eb -r 64b60603d7df recLog.inc.php --- a/recLog.inc.php Sun Mar 28 22:56:00 2010 +0900 +++ b/recLog.inc.php Sun Mar 28 22:58:24 2010 +0900 @@ -4,6 +4,20 @@ define( "EPGREC_WARN" , 1 ); define( "EPGREC_ERROR", 2 ); +class RecException extends Exception { + + private $level = EPGREC_INFO; + + public function __construct( $mesg, $l = EPGREC_INFO ) { + parent::__construct( $mesg ); + $this->level = $l; + } + + public function getLevel() { + return $this->level; + } +} + function reclog( $message , $level = EPGREC_INFO ) {