Fire a fatal error with the specified message and cause.

Return false.

Property definitions

saxophonit $ XophonReaderModel :: fire_fatal_error
	# Fire a fatal error with the specified message and cause.
	#
	# Return `false`.
	fun fire_fatal_error(message: String, cause: nullable Error):Bool do
		var e = exception(message, cause)

		if error_handler == null then
			e.throw
		else
			error_handler.fatal_error(e)
		end
		return false
	end
lib/saxophonit/reader_model.nit:315,2--327,4