~ubuntu-branches/ubuntu/wily/php-doctrine-common/wily-proposed

« back to all changes in this revision

Viewing changes to lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php

  • Committer: Package Import Robot
  • Author(s): David Prévot
  • Date: 2014-06-15 11:26:00 UTC
  • mfrom: (2.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20140615112600-sg4mgpwq9sfg4mre
Tags: 2.4.2-2
* Upload to unstable
* No tests if DEB_BUILD_OPTIONS contains nocheck

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 MIT license. For more information, see
 
17
 * <http://www.doctrine-project.org>.
 
18
 */
 
19
 
 
20
namespace Doctrine\Common\Proxy\Exception;
 
21
 
 
22
use UnexpectedValueException as BaseUnexpectedValueException;
 
23
 
 
24
/**
 
25
 * Proxy Unexpected Value Exception.
 
26
 *
 
27
 * @link   www.doctrine-project.org
 
28
 * @since  2.4
 
29
 * @author Marco Pivetta <ocramius@gmail.com>
 
30
 */
 
31
class UnexpectedValueException extends BaseUnexpectedValueException implements ProxyException
 
32
{
 
33
    /**
 
34
     * @return self
 
35
     */
 
36
    public static function proxyDirectoryNotWritable($proxyDirectory)
 
37
    {
 
38
        return new self(sprintf('Your proxy directory "%s" must be writable', $proxyDirectory));
 
39
    }
 
40
 
 
41
    /**
 
42
     * @param string     $className
 
43
     * @param string     $methodName
 
44
     * @param string     $parameterName
 
45
     * @param \Exception $previous
 
46
     *
 
47
     * @return self
 
48
     */
 
49
    public static function invalidParameterTypeHint($className, $methodName, $parameterName, \Exception $previous)
 
50
    {
 
51
        return new self(
 
52
            sprintf(
 
53
                'The type hint of parameter "%s" in method "%s" in class "%s" is invalid.',
 
54
                $parameterName,
 
55
                $methodName,
 
56
                $className
 
57
            ),
 
58
            0,
 
59
            $previous
 
60
        );
 
61
    }
 
62
}