Wrap class OAuthException with !class_exists

Same problem and solution as discussed on
https://drupal.org/node/1334528
This commit is contained in:
Carsten Pfeiffer 2013-04-27 21:08:45 +02:00
parent f84c57e7f2
commit 7e5ec9fceb
1 changed files with 4 additions and 2 deletions

View File

@ -3,8 +3,10 @@
/* Generic exception class /* Generic exception class
*/ */
class OAuthException extends Exception { if (!class_exists('OAuthException')) {
// pass class OAuthException extends Exception {
// pass
}
} }
class OAuthConsumer { class OAuthConsumer {