You need to update OAuth.php which can be found here https://github.com/abraham/twitteroauth/tree/master/twitteroauth
or simply change OAuth.php
class OAuthException extends Exception {
// pass
}
to
if (!class_exists('OAuthException')) {
class OAuthException extends Exception {
// pass
}
}