for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace tinymeng\OAuth2\Exception;
use Exception;
class OAuthException extends Exception
{
protected $raw;
public function __construct($message, $code = 0, $raw = null)
parent::__construct($message, $code);
$this->raw = $raw;
}
public function getRaw()
return $this->raw;