Created
September 8, 2011 20:51
-
-
Save renepardon/1204671 to your computer and use it in GitHub Desktop.
Firebug shows 500?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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