vendor/symfony/src/Symfony/Component/Locale/Exception/MethodArgumentValueNotImplementedException.php
changeset 0 7f95f8617b0b
equal deleted inserted replaced
-1:000000000000 0:7f95f8617b0b
       
     1 <?php
       
     2 
       
     3 /*
       
     4  * This file is part of the Symfony package.
       
     5  *
       
     6  * (c) Fabien Potencier <fabien@symfony.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 Symfony\Component\Locale\Exception;
       
    13 
       
    14 use Symfony\Component\Locale\Exception\NotImplementedException;
       
    15 
       
    16 /**
       
    17  * @author Eriksen Costa <eriksen.costa@infranology.com.br>
       
    18  */
       
    19 class MethodArgumentValueNotImplementedException extends NotImplementedException
       
    20 {
       
    21     /**
       
    22      * Constructor
       
    23      *
       
    24      * @param  string  $methodName         The method name that raised the exception
       
    25      * @param  string  $argName            The argument name
       
    26      * @param  string  $argValue           The argument value that is not implemented
       
    27      * @param  string  $additionalMessage  An optional additional message to append to the exception message
       
    28      */
       
    29     public function __construct($methodName, $argName, $argValue, $additionalMessage = '')
       
    30     {
       
    31         $message = sprintf(
       
    32             'The %s() method\'s argument $%s value %s behavior is not implemented.%s',
       
    33             $methodName,
       
    34             $argName,
       
    35             var_export($argValue, true),
       
    36             $additionalMessage != '' ? ' '.$additionalMessage.'. ' : ''
       
    37         );
       
    38 
       
    39         parent::__construct($message);
       
    40     }
       
    41 }