|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Exception.php'; 00027 00028 00035 class Zend_Date_Exception extends Zend_Exception 00036 { 00037 protected $operand = null; 00038 00039 public function __construct($message, $code = 0, $e = null, $op = null) 00040 { 00041 $this->operand = $op; 00042 parent::__construct($message, $code, $e); 00043 } 00044 00045 public function getOperand() 00046 { 00047 return $this->operand; 00048 } 00049 }