]> git.mxchange.org Git - friendica-addons.git/blob
c0ef3be82039ee0c8bddd6747600898d6ab8827e
[friendica-addons.git] /
1 <?php
2
3 /*
4  * This file is part of the Fxp Composer Asset Plugin package.
5  *
6  * (c) François Pluchino <francois.pluchino@gmail.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Fxp\Composer\AssetPlugin\Exception;
13
14 /**
15  * The Invalid Create Asset Repository Exception.
16  *
17  * @author François Pluchino <francois.pluchino@gmail.com>
18  */
19 class InvalidCreateRepositoryException extends \Exception implements ExceptionInterface
20 {
21     /**
22      * @var array
23      */
24     protected $data = array();
25
26     /**
27      * Set the data of asset package config defined by the registry.
28      *
29      * @param array $data The data
30      *
31      * @return self
32      */
33     public function setData(array $data)
34     {
35         $this->data = $data;
36
37         return $this;
38     }
39
40     /**
41      * Get the data of asset package config defined by the registry.
42      *
43      * @return array
44      */
45     public function getData()
46     {
47         return $this->data;
48     }
49 }