From 46b77928f746a4231d064774b5b67fd892c7ce86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 4 Aug 2013 17:50:34 +0200 Subject: rm vendor --- .../MethodArgumentValueNotImplementedException.php | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 vendor/symfony/intl/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php (limited to 'vendor/symfony/intl/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php') diff --git a/vendor/symfony/intl/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php b/vendor/symfony/intl/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php deleted file mode 100644 index 76e3f634..00000000 --- a/vendor/symfony/intl/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php +++ /dev/null @@ -1,41 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\Exception; - -use Symfony\Component\Intl\Exception\NotImplementedException; - -/** - * @author Eriksen Costa - */ -class MethodArgumentValueNotImplementedException extends NotImplementedException -{ - /** - * Constructor - * - * @param string $methodName The method name that raised the exception - * @param string $argName The argument name - * @param string $argValue The argument value that is not implemented - * @param string $additionalMessage An optional additional message to append to the exception message - */ - public function __construct($methodName, $argName, $argValue, $additionalMessage = '') - { - $message = sprintf( - 'The %s() method\'s argument $%s value %s behavior is not implemented.%s', - $methodName, - $argName, - var_export($argValue, true), - $additionalMessage !== '' ? ' '.$additionalMessage.'. ' : '' - ); - - parent::__construct($message); - } -} -- cgit v1.2.3