2 namespace PayPal\Exception;
3 class PPConnectionException extends \Exception
6 * The url that was being connected to when the exception occured
12 * Any response data that was returned by the server
17 public function __construct($url, $message, $code = 0) {
18 parent::__construct($message, $code);
22 public function setData($data) {
26 public function getData() {
30 public function getUrl() {