coldfusion.runtime.AbortException suggests the execution of a CFABORT tag somewhere. I'm guessing you forgot about a CFABORT tag during development - probably on your include page.
Now in our shop, we occasionally throw cfaborts for valid reasons (like a user trying to access a protected area). So in our onError function, we pitch these errors right out the window: <cfif structkeyexists(arguments.exception,'rootCause') and arguments.exception.rootCause.Type EQ "coldfusion.runtime.AbortException"> <cfreturn /> </cfif> Hope that helps... Jake Pilgrim ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274468 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

