diff recLog.inc.php @ 154:64b60603d7df

mod: RecExceptionÄɲÃ
author epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp>
date Sun, 28 Mar 2010 22:58:24 +0900
parents 5b192e94f49d
children
line wrap: on
line diff
--- 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 ) {