Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
06
/
wp-content
/
plugins
/
wordpress-popup
/
inc
/
providers
/
constantcontact
/
CtCt
/
Exceptions
:
CtctException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }