File "CtctException.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/wordpress-popup/inc/providers/constantcontact/CtCt/Exceptions/CtctException.php
File size: 600 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Ctct\Exceptions;

use Exception;

/**
 * General exception
 *
 * @package     exceptions
 * @author         djellesma
 */
class CtctException extends Exception
{

    private $errors;
    private $curlInfo;


    public function setErrors(array $errors)
    {
        $this->errors = $errors;
    }

    public function getErrors()
    {
        return $this->errors;
    }

    public function setCurlInfo(array $info)
    {
        $this->curlInfo = $info;
    }

    public function getCurlInfo()
    {
        return $this->curlInfo;
    }
}