Test for already defined OAuth exception class

This commit is contained in:
Jeremy Malcolm 2014-09-28 22:17:11 +01:00
parent c2998e26ec
commit 0a96fb1c2f
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 {