Chris@0
|
1 <?php
|
Chris@0
|
2 /*
|
Chris@0
|
3 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
Chris@0
|
4 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
Chris@0
|
5 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
Chris@0
|
6 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
Chris@0
|
7 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
Chris@0
|
8 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
Chris@0
|
9 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
Chris@0
|
10 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
Chris@0
|
11 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
Chris@0
|
12 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
Chris@0
|
13 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
Chris@0
|
14 *
|
Chris@0
|
15 * This software consists of voluntary contributions made by many individuals
|
Chris@0
|
16 * and is licensed under the MIT license. For more information, see
|
Chris@0
|
17 * <http://www.doctrine-project.org>.
|
Chris@0
|
18 */
|
Chris@0
|
19
|
Chris@0
|
20 namespace Doctrine\Common\Persistence\Mapping;
|
Chris@0
|
21
|
Chris@0
|
22 /**
|
Chris@0
|
23 * A MappingException indicates that something is wrong with the mapping setup.
|
Chris@0
|
24 *
|
Chris@0
|
25 * @since 2.2
|
Chris@0
|
26 */
|
Chris@0
|
27 class MappingException extends \Exception
|
Chris@0
|
28 {
|
Chris@0
|
29 /**
|
Chris@0
|
30 * @param string $className
|
Chris@0
|
31 * @param array $namespaces
|
Chris@0
|
32 *
|
Chris@0
|
33 * @return self
|
Chris@0
|
34 */
|
Chris@0
|
35 public static function classNotFoundInNamespaces($className, $namespaces)
|
Chris@0
|
36 {
|
Chris@0
|
37 return new self("The class '" . $className . "' was not found in the ".
|
Chris@0
|
38 "chain configured namespaces " . implode(", ", $namespaces));
|
Chris@0
|
39 }
|
Chris@0
|
40
|
Chris@0
|
41 /**
|
Chris@0
|
42 * @return self
|
Chris@0
|
43 */
|
Chris@0
|
44 public static function pathRequired()
|
Chris@0
|
45 {
|
Chris@0
|
46 return new self("Specifying the paths to your entities is required ".
|
Chris@0
|
47 "in the AnnotationDriver to retrieve all class names.");
|
Chris@0
|
48 }
|
Chris@0
|
49
|
Chris@0
|
50 /**
|
Chris@0
|
51 * @param string|null $path
|
Chris@0
|
52 *
|
Chris@0
|
53 * @return self
|
Chris@0
|
54 */
|
Chris@0
|
55 public static function fileMappingDriversRequireConfiguredDirectoryPath($path = null)
|
Chris@0
|
56 {
|
Chris@0
|
57 if ( ! empty($path)) {
|
Chris@0
|
58 $path = '[' . $path . ']';
|
Chris@0
|
59 }
|
Chris@0
|
60
|
Chris@0
|
61 return new self(
|
Chris@0
|
62 'File mapping drivers must have a valid directory path, ' .
|
Chris@0
|
63 'however the given path ' . $path . ' seems to be incorrect!'
|
Chris@0
|
64 );
|
Chris@0
|
65 }
|
Chris@0
|
66
|
Chris@0
|
67 /**
|
Chris@0
|
68 * @param string $entityName
|
Chris@0
|
69 * @param string $fileName
|
Chris@0
|
70 *
|
Chris@0
|
71 * @return self
|
Chris@0
|
72 */
|
Chris@0
|
73 public static function mappingFileNotFound($entityName, $fileName)
|
Chris@0
|
74 {
|
Chris@0
|
75 return new self("No mapping file found named '$fileName' for class '$entityName'.");
|
Chris@0
|
76 }
|
Chris@0
|
77
|
Chris@0
|
78 /**
|
Chris@0
|
79 * @param string $entityName
|
Chris@0
|
80 * @param string $fileName
|
Chris@0
|
81 *
|
Chris@0
|
82 * @return self
|
Chris@0
|
83 */
|
Chris@0
|
84 public static function invalidMappingFile($entityName, $fileName)
|
Chris@0
|
85 {
|
Chris@0
|
86 return new self("Invalid mapping file '$fileName' for class '$entityName'.");
|
Chris@0
|
87 }
|
Chris@0
|
88
|
Chris@0
|
89 /**
|
Chris@0
|
90 * @param string $className
|
Chris@0
|
91 *
|
Chris@0
|
92 * @return self
|
Chris@0
|
93 */
|
Chris@0
|
94 public static function nonExistingClass($className)
|
Chris@0
|
95 {
|
Chris@0
|
96 return new self("Class '$className' does not exist");
|
Chris@0
|
97 }
|
Chris@0
|
98 }
|