ZF-2384: Nonexistent method used in catch-blocks in code examples
Description
There's usage of nonexistent method {{Zend_Gdata_App_Exception::getResponse()}} in catch blocks in code examples several times in 15.4. Using Google Calendar and 15.10. Using Picasa Web Albums.
try {
...
} catch (Zend_Gdata_App_Exception $e) {
echo "Error: " . $e->getResponse();
}
Suppose it should be {{$e->getMessage()}} method or {{Zend_Gdata_App_HttpException}} class which contains {{getResponse()}}.
Comments
Posted by Wil Sinclair (wil) on 2008-01-15T17:05:12.000+0000
Updating to follow documentation issue standards.
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2008-09-01T00:50:32.000+0000
Solved in SVN r11174. Zend_Gdata_Calender.xml and Zend_Gdata_Photos.xml in documentation/en/module_specs.
Posted by Wil Sinclair (wil) on 2008-11-13T14:10:18.000+0000
Changing issues in preparation for the 1.7.0 release.