İstediğin istisna Kohana_Request_Exception
olduğunu düşünüyorum. İşte tüm istisnalar Kohana tanımlar bir listesi (kullanılarak oluşturulan grep -iR "class .*Exception" .
):
class Validate_Exception extends Kohana_Validate_Exception {}
class Kohana_Validate_Exception extends Kohana_Exception {
class Kohana_Request_Exception extends Kohana_Exception { }
class Kohana_Exception extends Exception {
class Kohana_View_Exception extends Kohana_Exception { }
Eğer bir 404 yanıt kodu istiyorsanız, size aynı zamanda denetleyicisi bu yapmak zorunda düşünüyorum
$this->request->status = 404;
Ben "resmi" en iyi uygulama nedir bilmiyorum, ama bu uğraşırken buldum budur.