System\Route::not_found PHP Method

not_found() public static method

Register the 404 not found callback
public static not_found ( $callbacks )
    public static function not_found($callbacks)
    {
        if ($callbacks instanceof Closure) {
            $callbacks = array('main' => $callbacks);
        }
        Router::$not_found = $callbacks;
    }