createNotFoundException() 공개 메소드

public createNotFoundException ( $message = 'Not Found', Exception $previous = null )
$previous Exception
예제 #1
0
 public function testCreateNotFoundException()
 {
     $controller = new TestController();
     $this->assertInstanceOf('Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException', $controller->createNotFoundException());
 }