for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OAuth\Exception;
use Exception;
use Throwable;
class OAuthException extends Exception
{
public function __construct(string $message = "", int $code = 403, Throwable $previous = null)
parent::__construct($message, $code, $previous);
}