| 1 | <?php |
||
| 6 | class PagSeguroException extends \RuntimeException |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @param ResponseInterface $response |
||
| 10 | * @param \Exception|null $cause |
||
| 11 | * |
||
| 12 | * @return PagSeguroException |
||
| 13 | */ |
||
| 14 | 2 | public static function create(ResponseInterface $response, \Exception $cause = null) |
|
| 18 | |||
| 19 | /** |
||
| 20 | * @param ResponseInterface $response |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | 2 | protected static function createMessage(ResponseInterface $response) |
|
| 39 | } |
||
| 40 |