Inheritance: extends Exception
Example #1
0
 /**
  *
  */
 public function testStaticApiToThrowableString_ReturnsThrowableTraceAsString()
 {
     $prev = $this->createException('Previous');
     $ex = $this->createException('Exception', $prev);
     $this->assertThrowableString(Exception::toThrowableString($ex));
 }
Example #2
0
 /**
  * @param Error|Exception $ex
  * @param mixed[] $params
  * @return mixed
  */
 protected function solver($ex, $params = [])
 {
     $this->logger->log($this->context['level'], \Kraken\Throwable\Exception::toString($ex));
 }