當前位置: 首頁>>代碼示例>>PHP>>正文


PHP InvalidArgumentException類代碼示例

本文整理匯總了PHP中InvalidArgumentException的典型用法代碼示例。如果您正苦於以下問題:PHP InvalidArgumentException類的具體用法?PHP InvalidArgumentException怎麽用?PHP InvalidArgumentException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了InvalidArgumentException類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validation

 public function validation($ruleName, $value)
 {
     Cascade::getLogger('bigc\\profile')->debug("ProfileData validation {$ruleName}, {$value}");
     try {
         $this->validRule[$ruleName]->assert($value);
     } catch (\Respect\Validation\Exceptions\NestedValidationException $ex) {
         $e = new \InvalidArgumentException($this->validMessage[$ruleName], 0, $ex);
         Cascade::getLogger('bigc\\profile')->warning($e->getMessage());
         throw $e;
     }
     return true;
 }
開發者ID:CrabHo,項目名稱:example-lib-profile,代碼行數:12,代碼來源:ProfileData.php

示例2: testThrowError

 /**
  * @covers Gloubster\Server\GloubsterServer::throwError
  */
 public function testThrowError()
 {
     $server = $this->getServer();
     $exception = new \InvalidArgumentException('SHIT');
     $server['monolog']->expects($this->once())->method('addError')->with($this->equalTo($exception->getMessage()));
     try {
         $server->throwError($exception);
         $this->fail('Should have raised an exception');
     } catch (\Exception $e) {
         $this->assertEquals($exception, $e);
     }
 }
開發者ID:gloubster,項目名稱:server,代碼行數:15,代碼來源:GloubsterServerTest.php

示例3: init

 private function init($fileName)
 {
     if (!file_exists($fileName)) {
         throw InvalidArgumentException::fileNotExists($fileName);
     }
     $this->fileName = $fileName;
 }
開發者ID:arshanam,項目名稱:inbound-rocket,代碼行數:7,代碼來源:ConfigFileReaderTrait.php

示例4: __construct

 public function __construct($fileName)
 {
     if (!file_exists($fileName)) {
         throw InvalidArgumentException::fileNotExists($fileName);
     }
     $this->fileName = $fileName;
 }
開發者ID:shapeways,項目名稱:referer-parser,代碼行數:7,代碼來源:JsonConfigReader.php

示例5: __construct

 public function __construct($name, $value, $expected)
 {
     if (!is_string($name)) {
         throw new InvalidArgumentException("Not a string: name");
     }
     if (!is_string($expected)) {
         throw new InvalidArgumentException("Not a string: expected");
     }
     $lead = "Invalid";
     if (NULL === $value) {
         $lead = "Not set";
     }
     $type = gettype($value);
     $got_msg = $type;
     if (is_object($value)) {
         $class = get_class($value);
         $got_msg = "{$type} ({$class})";
     }
     $this->name = $name;
     $this->type = $type;
     $this->expected = $expected;
     $this->message = $msg;
     $msg = "{$lead}: {$name} - Got: {$got_msg} - Expected: {$expected}";
     parent::__construct($msg, 0);
 }
開發者ID:hovenko,項目名稱:Madcow,代碼行數:25,代碼來源:InvalidArgumentException.php

示例6: __construct

 public function __construct($message, array $errors, Exception $previous = null)
 {
     $flatErrors = iterator_to_array(new RecursiveIteratorIterator(new RecursiveArrayIterator($errors)), false);
     $message = $message . ":\n" . implode("\n", $flatErrors);
     parent::__construct($message, 0, $previous);
     $this->setErrors($errors);
 }
開發者ID:tobiasziegler,項目名稱:platform,代碼行數:7,代碼來源:ValidatorException.php

示例7: __construct

 /**
  * @param string|WeaponlikeCode $message
  * @param int $code
  * @param \Exception $previous
  */
 public function __construct($message = '', $code = 0, \Exception $previous = null)
 {
     if ($message instanceof WeaponlikeCode) {
         $message = "Given weapon-like '{$message}' is of unknown type";
     }
     parent::__construct($message, $code, $previous);
 }
開發者ID:jaroslavtyc,項目名稱:drd-plus-person-skills,代碼行數:12,代碼來源:UnknownTypeOfWeapon.php

示例8: __construct

 /**
  * Constructor.
  *
  * @param mixed        $value
  * @param string|array $expectedType
  */
 public function __construct($value, $expectedType)
 {
     if (is_array($expectedType)) {
         $expectedType = implode('", "', $expectedType);
     }
     parent::__construct(sprintf('Expected argument of type "%s", "%s" given', $expectedType, is_object($value) ? get_class($value) : gettype($value)));
 }
開發者ID:rollerworks,項目名稱:search,代碼行數:13,代碼來源:UnexpectedTypeException.php

示例9: __construct

 public function __construct(\ReflectionParameter $parameter, $message = null, $code = null, \Exception $previous = null)
 {
     if (null === $message) {
         $message = sprintf('Unable to resolve argument $%s (#%d) of %s.', $parameter->name, $parameter->getPosition(), static::getFunctionName($parameter->getDeclaringFunction()));
     }
     parent::__construct($message, $code, $previous);
 }
開發者ID:rybakit,項目名稱:arguments-resolver,代碼行數:7,代碼來源:UnresolvableArgumentException.php

示例10: __construct

 /**
  * @inheritdoc
  */
 public function __construct($message = '', $code = 0, \Exception $previous = null)
 {
     if (empty($message)) {
         $message = 'Invalid argument value.';
     }
     parent::__construct($message, $code, $previous);
 }
開發者ID:krixon,項目名稱:exceptions,代碼行數:10,代碼來源:InvalidArgumentValueException.php

示例11: __construct

 /**
  * @param string $message
  * @param \Exception $previous
  */
 public function __construct($message = null, \Exception $previous = null)
 {
     if (empty($message)) {
         $message = 'Listeners must implements EventListenerInterface';
     }
     parent::__construct($message, $previous);
 }
開發者ID:dw250100785,項目名稱:gitlab-webhook,代碼行數:11,代碼來源:InvalidListenerException.php

示例12: __construct

 /**
  * {@inheritdoc}
  */
 public function __construct($inputCurrency, $allowedCurrencies = null)
 {
     if (null === $allowedCurrencies) {
         $allowedCurrencies = Environment::$ALLOWED_CURRENCIES;
     }
     parent::__construct(sprintf('Invalid currency given (%s), allowed: %s', $inputCurrency, implode(', ', $allowedCurrencies)));
 }
開發者ID:whatwedo,項目名稱:postfinance-e-payment,代碼行數:10,代碼來源:InvalidCurrencyException.php

示例13: __construct

 public function __construct($message = "", $code = 0, Exception $previous = null)
 {
     if (empty($message)) {
         $message = 'The specified file pointer is not a valid stream resource';
     }
     parent::__construct($message, $code, $previous);
 }
開發者ID:akeeba,項目名稱:s3,代碼行數:7,代碼來源:InvalidFilePointer.php

示例14: __construct

 public function __construct($file, $line, $message)
 {
     parent::__construct();
     $this->file = $file;
     $this->line = $line;
     $this->message = $message;
 }
開發者ID:phpml,項目名稱:phpml,代碼行數:7,代碼來源:InvalidArgumentException.php

示例15: __construct

 public function __construct($message = null)
 {
     if ($message === null) {
         $message = 'The parameter must be a non empty string';
     }
     parent::__construct($message);
 }
開發者ID:alpixel,項目名稱:AlpixelMenuBundle,代碼行數:7,代碼來源:LocaleException.php


注:本文中的InvalidArgumentException類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。