Export to GitHub

oauth - issue #242

PHP Fatal error: Cannot redeclare class OAuthException in OAuth.php on line 8


Posted on Nov 3, 2013 by Grumpy Rhino

If you use this library with OAuth included in PHP you get the following error:

PHP Fatal error: Cannot redeclare class OAuthException in OAuth.php on line 8

Please wrap it like that:

if (!class_exists('OAuthException')) {

class OAuthException extends Exception {
      // pass
}

}

Status: New