for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Throws a basic 404 error exception
*
* @author Sam Stenvall <[email protected]>
* @copyright Copyright © Sam Stenvall 2013-
* @license https://www.gnu.org/licenses/gpl.html The GNU General Public License v3.0
*/
class PageNotFoundException extends CHttpException
{
public function __construct()
parent::__construct(404, Yii::t('Exceptions', 'The requested page does not exist'));
}