Hi all, I'd like to use an Application.cfc file in my root directory, and I'd like it to extend another CFC. I want to call the other CFC using a mapping. In other words:
<cfcomponent extends="mapping_name.cfc_name">
Naturally, everything breaks if the mapping doesn't exist. I want to be able to gracefully handle this issue if it happens, but I can't figure out how to trap the error. How would I handle this error? Thanks!
<cfcomponent extends="mapping_name.cfc_name">
Naturally, everything breaks if the mapping doesn't exist. I want to be able to gracefully handle this issue if it happens, but I can't figure out how to trap the error. How would I handle this error? Thanks!