buildLink within query loop

I’m creating a 404 page that can suggest alternative URLs. However, when I try to output a query holding navigation exit handlers, I’m presented with the following error.

Error Messages: The buildLink method was not found.
Either there are no methods with the specified method name and argument types or the buildLink method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that match the provided arguments. If this is a Java object and you verified that the method exists, use the javacast function to reduce ambiguity.

Here is the code used for output:

I get the same error if I pass a string into buildLink('foo.bar"). I can also see buildLink() if I dump/abort the event object prior to the loop. I using 3.0 RC2 (or whatever was on GitHub as of last week).

Jason Durham

Do you have a column in your query called “event”?

~Brad

Yes I do. You da man. Thanks.

Jason Durham