| 1 | <?php |
||
| 14 | class TwitchSDKException extends \Exception |
||
| 15 | { |
||
| 16 | /** @var TwitchSDKException */ |
||
| 17 | protected $previous; |
||
| 18 | |||
| 19 | public function __construct($message = null, $code = 0, TwitchSDKException $previous = null) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Formatted string for display |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function __toString() |
||
| 38 | } |
||
| 39 |