function exception_error_handler($errno, $errstr, $errfile, $errline ) {
throw new PluginErrorException($errstr, 0, $errno, $errfile, $errline);
}
-set_error_handler("exception_error_handler", E_ALL);
/* the Exceptionhandler for Syntax-Errors, throwed by PHP itself */
/**
*
* @category Plugin
* @package StatusNet
- * @author Leon Giesenkaemper <leon@darksider3.de>
+ * @author Craig Andrews <candrews@integralblue.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://darksider3.de/sn/urlshortenerplugin2.html
*/
{
try
{
- //Or create exception here, by looking for 'false'...? Hmm..
- //No, let HTTPClient throw it. But then we need a more generally
- //Exception system.
$request = HTTPClient::start();
$response = $request->get($url);
-
} catch(PluginErrorException $e)
{
$e->printFull();