• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/Locale/Math/Exception.php

00001 <?php
00026 require_once 'Zend/Locale/Exception.php';
00027 
00028 
00035 class Zend_Locale_Math_Exception extends Zend_Locale_Exception
00036 {
00037     protected $op1 = null;
00038     protected $op2 = null;
00039     protected $result = null;
00040 
00041     public function __construct($message, $op1 = null, $op2 = null, $result = null)
00042     {
00043         $this->op1 = $op1;
00044         $this->op2 = $op2;
00045         $this->result = $result;
00046         parent::__construct($message);
00047     }
00048 
00049     public function getResults()
00050     {
00051         return array($this->op1, $this->op2, $this->result);
00052     }
00053 }

Generated on Thu Apr 19 2012 17:01:16 for openbiz by  doxygen 1.7.2