# Fire an error with the specified message and cause.
fun fire_error(message: String, cause: nullable Error) do
var e = exception(message, cause)
if error_handler != null then
error_handler.error(e)
end
end
lib/saxophonit/reader_model.nit:329,2--336,4