for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Redbox\Twitch\Exception;
class TwitchException extends \Exception {
protected $response;
public function setRepsonse($response) {
$this->response = $response;
}
public function getRepsonse() {
return $this->response;