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


PHP InvalidArgumentException::getMessage方法代码示例

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


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

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

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

示例3: testCreateWithExceptionWithPrevious

 /**
  * Log events also take an exception as message argument (here with previous exception)
  */
 public function testCreateWithExceptionWithPrevious()
 {
     $logEvent = LogEvent::create(ILogger::LEVEL_ERROR, $this->invargEx, array(), 'PHPUnit');
     $logEventData = $logEvent->getArrayCopy();
     $this->assertNotEmpty($logEventData);
     $this->assertInternalType('array', $logEventData);
     $this->assertArrayHasKey('msg', $logEventData);
     $this->assertArrayHasKey('exception', $logEventData);
     $this->assertEquals($this->invargEx->getMessage(), $logEventData['msg']);
     $this->assertNotEmpty($logEventData['exception']);
     $this->assertInternalType('array', $logEventData['exception']);
     $exceptionArray = $logEventData['exception'];
     $this->assertArrayHasKey('file', $exceptionArray);
     $this->assertArrayHasKey('message', $exceptionArray);
     $this->assertArrayHasKey('code', $exceptionArray);
     $this->assertArrayHasKey('line', $exceptionArray);
     $this->assertArrayHasKey('trace', $exceptionArray);
     $this->assertArrayHasKey('previous', $exceptionArray);
     $this->assertEquals(__FILE__, $exceptionArray['file']);
     $this->assertEquals($this->invargEx->getMessage(), $exceptionArray['message']);
     $this->assertEquals($this->invargEx->getCode(), $exceptionArray['code']);
     $this->assertEquals($this->invargEx->getLine(), $exceptionArray['line']);
     $this->assertNotEmpty($exceptionArray['trace']);
     $previousArray = $exceptionArray['previous'];
     $this->assertArrayHasKey('file', $previousArray);
     $this->assertArrayHasKey('message', $previousArray);
     $this->assertArrayHasKey('code', $previousArray);
     $this->assertArrayHasKey('line', $previousArray);
     $this->assertArrayHasKey('trace', $previousArray);
     $this->assertArrayNotHasKey('previous', $previousArray);
     $this->assertEquals(__FILE__, $previousArray['file']);
     $this->assertEquals($this->runtimeEx->getMessage(), $previousArray['message']);
     $this->assertEquals($this->runtimeEx->getCode(), $previousArray['code']);
     $this->assertEquals($this->runtimeEx->getLine(), $previousArray['line']);
     $this->assertNotEmpty($previousArray['trace']);
 }
开发者ID:zalora,项目名称:punyan,代码行数:39,代码来源:LogEventTest.php

示例4: wrap

 public static function wrap(\InvalidArgumentException $e)
 {
     return new InvalidArgumentException($e->getMessage(), $e->getCode(), $e);
 }
开发者ID:cs278,项目名称:bank-modulus,代码行数:4,代码来源:Util.php

示例5: handleInvalidArgumentException

 /**
  * Handles cases where some bad parameters were passed to the intention.
  *
  * @param \InvalidArgumentException $exception
  *
  * @throws BadRequestHttpException
  */
 protected function handleInvalidArgumentException(\InvalidArgumentException $exception)
 {
     throw new BadRequestHttpException($exception->getMessage());
 }
开发者ID:algisimu,项目名称:IntentionBundle,代码行数:11,代码来源:IntentionControllerTrait.php

示例6: fromInvalidArgumentExceptionAndPrototype

 /**
  * @param \InvalidArgumentException $exception
  * @param \Prooph\Processing\Type\Prototype $prototype
  * @return static
  */
 public static function fromInvalidArgumentExceptionAndPrototype(\InvalidArgumentException $exception, Prototype $prototype)
 {
     $invalidTypeException = new static($exception->getMessage(), $exception->getCode(), $exception);
     $invalidTypeException->relatedPrototypeOfType = $prototype;
     return $invalidTypeException;
 }
开发者ID:prooph,项目名称:processing,代码行数:11,代码来源:InvalidTypeException.php


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