New HTTP Exceptions

Hi!

You can throw these kind of HTTP exceptions like this:

use Slim\Exception\HttpNotFoundException;
// ...

throw new HttpNotFoundException($request);

Make sure to pass the $request object.