00001 <?php
00003
00004
00005
00006
00007
00008
00010
00027 class FLEA_Exception_NotImplemented extends FLEA_Exception
00028 {
00029 var $className;
00030 var $methodName;
00031
00040 function FLEA_Exception_NotImplemented($method, $class = '')
00041 {
00042 $this->className = $class;
00043 $this->methodName = $method;
00044 if ($class) {
00045 $code = 0x010200a;
00046 parent::FLEA_Exception(sprintf(_ET($code), $class, $method));
00047 } else {
00048 $code = 0x010200b;
00049 parent::FLEA_Exception(sprintf(_ET($code), $method));
00050 }
00051 }
00052 }