InvalidArgumentException.php in Zircon Profile 8
Same filename in this branch
- 8 vendor/sebastian/recursion-context/src/InvalidArgumentException.php
- 8 vendor/symfony/process/Exception/InvalidArgumentException.php
- 8 vendor/symfony/validator/Exception/InvalidArgumentException.php
- 8 vendor/symfony/dependency-injection/Exception/InvalidArgumentException.php
- 8 vendor/symfony/serializer/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-feed/src/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-hydrator/src/Exception/InvalidArgumentException.php
- 8 vendor/psr/log/Psr/Log/InvalidArgumentException.php
- 8 vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-feed/src/PubSubHubbub/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-feed/src/Reader/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-feed/src/Writer/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-hydrator/src/Strategy/Exception/InvalidArgumentException.php
- 8 vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/Exception/InvalidArgumentException.php
- 8 vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php
- 8 vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/InvalidArgumentException.php
Same filename and directory in other branches
Namespace
Doctrine\Common\Proxy\ExceptionFile
vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/InvalidArgumentException.phpView source
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\Common\Proxy\Exception;
use Doctrine\Common\Persistence\Proxy;
use InvalidArgumentException as BaseInvalidArgumentException;
/**
* Proxy Invalid Argument Exception.
*
* @link www.doctrine-project.org
* @since 2.4
* @author Marco Pivetta <ocramius@gmail.com>
*/
class InvalidArgumentException extends BaseInvalidArgumentException implements ProxyException {
/**
* @return self
*/
public static function proxyDirectoryRequired() {
return new self('You must configure a proxy directory. See docs for details');
}
/**
* @param string $className
* @param string $proxyNamespace
*
* @return self
*/
public static function notProxyClass($className, $proxyNamespace) {
return new self(sprintf('The class "%s" is not part of the proxy namespace "%s"', $className, $proxyNamespace));
}
/**
* @param string $name
*
* @return self
*/
public static function invalidPlaceholder($name) {
return new self(sprintf('Provided placeholder for "%s" must be either a string or a valid callable', $name));
}
/**
* @return self
*/
public static function proxyNamespaceRequired() {
return new self('You must configure a proxy namespace');
}
/**
* @param Proxy $proxy
*
* @return self
*/
public static function unitializedProxyExpected(Proxy $proxy) {
return new self(sprintf('Provided proxy of type "%s" must not be initialized.', get_class($proxy)));
}
/**
* @param mixed $callback
*
* @return self
*/
public static function invalidClassNotFoundCallback($callback) {
$type = is_object($callback) ? get_class($callback) : gettype($callback);
return new self(sprintf('Invalid \\$notFoundCallback given: must be a callable, "%s" given', $type));
}
}
Classes
Name | Description |
---|---|
InvalidArgumentException | Proxy Invalid Argument Exception. |