1
|
|
<?php
|
2
|
|
/**
|
3
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
4
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
5
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
6
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
7
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
8
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
9
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
10
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
11
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
12
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
13
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
14
|
|
*
|
15
|
|
* This software consists of voluntary contributions made by many individuals
|
16
|
|
* and is licensed under the LGPL. For more information please see
|
17
|
|
* <http://phing.info>.
|
18
|
|
*/
|
19
|
|
|
20
|
|
/**
|
21
|
|
* ConfigurationException is thrown by Phing during the configuration and setup phase of the project.
|
22
|
|
*
|
23
|
|
* @author Hans Lellelid <hans@xmpl.org>
|
24
|
|
* @package phing
|
25
|
|
*/
|
26
|
|
class ConfigurationException extends Exception
|
27
|
|
{
|
28
|
|
|
29
|
|
/**
|
30
|
|
* Location in the xml file.
|
31
|
|
*
|
32
|
|
* @var Location
|
33
|
|
*/
|
34
|
|
protected $location;
|
35
|
|
|
36
|
|
/**
|
37
|
|
* The nested "cause" exception.
|
38
|
|
*
|
39
|
|
* @var Exception
|
40
|
|
*/
|
41
|
|
protected $cause;
|
42
|
|
|
43
|
|
/**
|
44
|
|
* Construct a ConfigurationException.
|
45
|
|
* Supported signatures:
|
46
|
|
* throw new BuildException($causeExc);
|
47
|
|
* throw new BuildException($msg);
|
48
|
|
* throw new BuildException($msg, $causeExc);
|
49
|
|
*
|
50
|
|
* @param Exception|string $p1
|
51
|
|
* @param Exception|null $p2
|
52
|
|
*/
|
53
|
0
|
public function __construct($p1, $p2 = null)
|
54
|
|
{
|
55
|
0
|
$cause = null;
|
56
|
0
|
$msg = "";
|
57
|
|
|
58
|
0
|
if ($p2 !== null) {
|
59
|
0
|
if ($p2 instanceof Exception) {
|
60
|
0
|
$cause = $p2;
|
61
|
0
|
$msg = $p1;
|
62
|
|
}
|
63
|
0
|
} elseif ($p1 instanceof Exception) {
|
64
|
0
|
$cause = $p1;
|
65
|
0
|
} else {
|
66
|
0
|
$msg = $p1;
|
67
|
|
}
|
68
|
|
|
69
|
0
|
parent::__construct($msg);
|
70
|
|
|
71
|
0
|
if ($cause !== null) {
|
72
|
0
|
$this->cause = $cause;
|
73
|
0
|
$this->message .= " [wrapped: " . $cause->getMessage() . "]";
|
74
|
|
}
|
75
|
|
}
|
76
|
|
|
77
|
|
/**
|
78
|
|
* Gets the cause exception.
|
79
|
|
*
|
80
|
|
* @return Exception
|
81
|
|
*/
|
82
|
0
|
public function getCause()
|
83
|
|
{
|
84
|
0
|
return $this->cause;
|
85
|
|
}
|
86
|
|
}
|