public function ExceptionStackTest::testNestedExceptions

File

drupal/core/vendor/phpunit/phpunit/Tests/_files/ExceptionStack.php, line 16

Class

ExceptionStackTest

Code

public function testNestedExceptions() {
  $exceptionThree = new Exception('Three');
  $exceptionTwo = new InvalidArgumentException('Two', 0, $exceptionThree);
  $exceptionOne = new Exception('One', 0, $exceptionTwo);
  throw $exceptionOne;
}