CurlError.php 363 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace NavOnlineInvoice;
  3. use Exception;
  4. class CurlError extends Exception {
  5. protected $errno;
  6. function __construct($errno) {
  7. $this->errno = $errno;
  8. $message = "Connection error. CURL error code: $errno";
  9. parent::__construct($message);
  10. }
  11. public function getErrno() {
  12. return $this->errno;
  13. }
  14. }