Skip to content

Instantly share code, notes, and snippets.

@renepardon
Created September 8, 2011 20:51
Show Gist options
  • Save renepardon/1204671 to your computer and use it in GitHub Desktop.
Save renepardon/1204671 to your computer and use it in GitHub Desktop.
Firebug shows 500?
<?php
namespace Yela;
class PageNotFoundException
extends Exception
{
public function __construct(
$message = 'The requested site was not found on this server',
$code = 404,
$previous = null
)
{
parent::__construct($message, $code, $previous);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment