SproutCMS

This is the code documentation for the SproutCMS project

class Kohana_404_Exception

Creates a Page Not Found exception.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends Kohana_404_Exception {
    
    /**
    * Sends &quot;File Not Found&quot; headers, to emulate server behavior.
    **/
    public function sendHeaders () {
        // Method code goes here
    }
    
    /**
    * Set internal properties.
    **/
    public function __construct (string $page) {
        // Method code goes here
    }
    
}
?>