This commit is contained in:
Marcin Kurczewski
2013-10-12 22:37:18 +02:00
parent 6e7791e94b
commit 21f4669a98
12 changed files with 176 additions and 186 deletions

View File

@ -7,7 +7,7 @@ class UserController
public function listAction()
{
$this->context->subTitle = 'users';
throw new Exception('Not implemented');
throw new SimpleException('Not implemented');
}
/**
@ -17,6 +17,6 @@ class UserController
public function viewAction($name)
{
$this->context->subTitle = $name;
throw new Exception('Not implemented');
throw new SimpleException('Not implemented');
}
}