| 1 |
<?php |
| 2 |
/* |
| 3 |
* This file is part of the ManageWP Worker plugin. |
| 4 |
* |
| 5 |
* (c) ManageWP LLC <contact@managewp.com> |
| 6 |
* |
| 7 |
* For the full copyright and license information, please view the LICENSE |
| 8 |
* file that was distributed with this source code. |
| 9 |
*/ |
| 10 |
|
| 11 |
/** |
| 12 |
* @deprecated This is a hack used for legacy action calls. |
| 13 |
*/ |
| 14 |
class MWP_Worker_ActionResponse extends Exception |
| 15 |
{ |
| 16 |
|
| 17 |
private $data; |
| 18 |
|
| 19 |
public function __construct($data) |
| 20 |
{ |
| 21 |
$this->data = $data; |
| 22 |
} |
| 23 |
|
| 24 |
public function getData() |
| 25 |
{ |
| 26 |
return $this->data; |
| 27 |
} |
| 28 |
} |
| 29 |
|