diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Service/Ebay/Finding/Error/Data.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Service/Ebay/Finding/Error/Data.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,158 @@ +category = $this->_query(".//$ns:category[1]", 'string'); + $this->domain = $this->_query(".//$ns:domain[1]", 'string'); + $this->errorId = $this->_query(".//$ns:errorId[1]", 'integer'); + $this->exceptionId = $this->_query(".//$ns:exceptionId[1]", 'string'); + $this->message = $this->_query(".//$ns:message[1]", 'string'); + $this->parameter = $this->_query(".//$ns:parameter", 'string', true); + $this->severity = $this->_query(".//$ns:severity[1]", 'string'); + $this->subdomain = $this->_query(".//$ns:subdomain[1]", 'string'); + + $this->_attributes['parameter'] = array( + 'name' => $this->_query(".//$ns:parameter/@name", 'string', true) + ); + } +}