当前位置: 首页>>代码示例>>PHP>>正文


PHP InvalidArgumentException::__construct方法代码示例

本文整理汇总了PHP中InvalidArgumentException::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP InvalidArgumentException::__construct方法的具体用法?PHP InvalidArgumentException::__construct怎么用?PHP InvalidArgumentException::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在InvalidArgumentException的用法示例。


在下文中一共展示了InvalidArgumentException::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __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

示例2: __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

示例3: __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

示例4: __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

示例5: __construct

 public function __construct($message = "", $code = 500, Exception $previous = null)
 {
     if (empty($message)) {
         $message = \JText::_('LIB_FOF_MODEL_ERR_FILTER_INVALIDFIELD');
     }
     parent::__construct($message, $code, $previous);
 }
开发者ID:Joal01,项目名称:fof,代码行数:7,代码来源:InvalidFieldObject.php

示例6: __construct

 public function __construct($message, $code, $propertyPath = null, $value, array $constraints = array())
 {
     parent::__construct($message, $code);
     $this->propertyPath = $propertyPath;
     $this->value = $value;
     $this->constraints = $constraints;
 }
开发者ID:GerDner,项目名称:luck-docker,代码行数:7,代码来源:InvalidArgumentException.php

示例7: __construct

 /**
  * Constructor.
  *
  * @param string $name
  * @param array  $alternatives
  */
 public function __construct($name, array $alternatives = array())
 {
     $this->name = $name;
     $this->alternatives = $alternatives;
     parent::__construct('');
     $this->update();
 }
开发者ID:borobudur-php,项目名称:borobudur-di,代码行数:13,代码来源:ParameterNotFoundException.php

示例8: __construct

 /**
  * Construct the exception with a type.
  * Use type from self constants.
  *
  * @param string     $type
  * @param int        $code
  * @param \Exception $previous
  */
 public function __construct($type, $code = 0, \Exception $previous = null)
 {
     if ($type != self::ROW || $type != self::COLUMN) {
         throw new parent(sprintf("Type must be %s or %s.", self::ROW, self::COLUMN));
     }
     parent::__construct(sprintf("%s number must be lower or equal than max %s number -1 and higher or equal than Zero.", lcfirst($type), $type), $code, $previous);
 }
开发者ID:skillberto,项目名称:config,代码行数:15,代码来源:InvalidNumberException.php

示例9: __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

示例10: __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

示例11: __construct

 public function __construct($message = null)
 {
     if (null === $message) {
         $message = t('Соединение с БД не установлено.');
     }
     return parent::__construct($message);
 }
开发者ID:umonkey,项目名称:molinos-cms,代码行数:7,代码来源:exception.notconnected.php

示例12: __construct

 /**
  * This function instantiates the exception with the specified message,
  * variables, and code.
  *
  * @access public
  * @param string $message                        the message
  * @param array $variables                       the variables
  * @param integer $code                          the code
  * @return Throwable_InvalidArgument_Exception   the exception
  */
 public function __construct($message, array $variables = NULL, $code = 0)
 {
     // Set the message
     $message = __($message, $variables);
     // Pass the message to the parent
     parent::__construct($message, $code);
 }
开发者ID:ruslankus,项目名称:invoice-crm,代码行数:17,代码来源:Exception.php

示例13: __construct

 public function __construct($file, $line, $message)
 {
     parent::__construct();
     $this->file = $file;
     $this->line = $line;
     $this->message = $message;
 }
开发者ID:phpml,项目名称:phpml,代码行数:7,代码来源:InvalidArgumentException.php

示例14: __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

示例15: __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


注:本文中的InvalidArgumentException::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。