v7‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT home/ajdemo/public_html/mempro/library/Zend/Exception.php000064400000004712152101624670017557 0ustar00_previous = $previous; } else { parent::__construct($msg, (int) $code, $previous); } } /** * Overloading * * For PHP < 5.3.0, provides access to the getPrevious() method. * * @param string $method * @param array $args * @return mixed */ public function __call($method, array $args) { if ('getprevious' == strtolower($method)) { return $this->_getPrevious(); } return null; } /** * String representation of the exception * * @return string */ public function __toString() { if (version_compare(PHP_VERSION, '5.3.0', '<')) { if (null !== ($e = $this->getPrevious())) { return $e->__toString() . "\n\nNext " . parent::__toString(); } } return parent::__toString(); } /** * Returns previous Exception * * @return Exception|null */ protected function _getPrevious() { return $this->_previous; } } home/ajdemo/public_html/mempro/library/Zend/Cache/Exception.php000064400000002000152101643170020542 0ustar00logError; } function setLogError($logError) { $this->logError = (bool)$logError; } /** * Return a message to be displayed to visitors if no AM_DEBUG enabled * @return string */ function getPublicError(){ return ___('An internal error happened in the script, please contact webmaster for details'); } public function getPublicTitle() {} } class Am_Exception_InternalError extends Am_Exception {} class Am_Exception_Security extends Am_Exception {} class Am_Exception_NotImplemented extends Am_Exception {} class Am_Exception_InputError extends Am_Exception { public function getPublicError() { return $this->getMessage(); } } /* * Show error message using title from asked form without logging * Made for signup form * Useful if catch and assign pageTitle by setPublicTitle * getPublicTitle uses from App.php */ class Am_Exception_QuietError extends Am_Exception { protected $logError = false; protected $pageTitle; public function getPublicError() { return $this->getMessage(); } public function setPublicTitle($err){ $this->pageTitle = $err; } public function getPublicTitle() { return $this->pageTitle; } } class Am_Exception_AccessDenied extends Am_Exception { public function getPublicError() { return $this->getMessage(); } } class Am_Exception_Configuration extends Am_Exception { protected $logError = true; public function getPublicError() { return "There is a configuration error in the membership software, please contact site webmaster to fix it"; } } class Am_Exception_Db extends Am_Exception { protected $dbMessage; public function getPublicError() { return ___('The database has encountered a problem, please try again later.'); } public function setDbMessage($err){ $this->dbMessage = $err; } public function getDbMessage(){ return $this->dbMessage; } } class Am_Exception_Db_NotFound extends Am_Exception_Db {} class Am_Exception_Db_NotUnique extends Am_Exception_Db { protected $_table = null; public function setTable($table) { $this->_table = $table; } public function getTable() { return $this->_table; } } class Am_Exception_FatalError extends Am_Exception { public function getPublicError() { return $this->getMessage(); } } /** Error triggered by the integration plugin db call */ class Am_Exception_PluginDb extends Am_Exception_Db { } class Am_Exception_Redirect extends Am_Exception { protected $logError = false; } home/ajdemo/public_html/mempro/library/Zend/Locale/Math/Exception.php000064400000002706152101666740021654 0ustar00op1 = $op1; $this->op2 = $op2; $this->result = $result; parent::__construct($message); } public function getResults() { return array($this->op1, $this->op2, $this->result); } }