Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Date/Exception.php
Go to the documentation of this file.
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 }
 All Data Structures Namespaces Files Functions Variables Enumerations