In other words, how do I throw a "404 - not found" in Ramaze?
You can use the Innate::Helper::Redirect#respond (source) method which gets included into your controller to return any response:
Innate::Helper::Redirect#respond
def my_action respond("Response body", 404) end