From 57ac95ce16d47c26fde5fc3db268104dd69e1908 Mon Sep 17 00:00:00 2001 From: niaccurshi Date: Tue, 17 Dec 2013 17:33:41 +0000 Subject: [PATCH] updated OAuth.php OAuthException classs Adding a pass through to the parent "Exception" class to avoid failure. --- includes/Twitter/twitteroauth/OAuth.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/Twitter/twitteroauth/OAuth.php b/includes/Twitter/twitteroauth/OAuth.php index e763041..ea84bba 100755 --- a/includes/Twitter/twitteroauth/OAuth.php +++ b/includes/Twitter/twitteroauth/OAuth.php @@ -5,6 +5,9 @@ */ class OAuthException extends Exception { // pass + public function __construct() { + parent::__construct(); + } } class OAuthConsumer {