1

Symfony2のリポジトリクラスで「NotFoundException」を使用するには?

$test = $em->getRepository('DemoBundle:Test')->find(1);

if (!$test) {
    throw $this->createNotFoundException('The category area does not exist. Id 1');
}
4

2 に答える 2