File "InvalidArgumentException.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/doctrine/dbal/src/Exception/InvalidArgumentException.php
File size: 397 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Doctrine\DBAL\Exception;
use Doctrine\DBAL\Exception;
/**
* Exception to be thrown when invalid arguments are passed to any DBAL API
*
* @psalm-immutable
*/
class InvalidArgumentException extends Exception
{
/** @return self */
public static function fromEmptyCriteria()
{
return new self('Empty criteria was used, expected non-empty criteria');
}
}