SproutCMS

This is the code documentation for the SproutCMS project

class Kohana_User_Exception

Creates a custom exception.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends Kohana_User_Exception {
    
    /**
    * Set exception title and message.
    **/
    public function __construct (string $title, string $message) {
        // Method code goes here
    }
    
}
?>