Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
<cfimport taglib="../.." prefix="ex">
<ex:detail error=#error#>
 
<cfoutput>
 
<cfif left(error.tagName,3) is "cf_">
<p>
You are trying to call an unknown ColdFusion custom tag.  <B>NOTE</B> 
If the tag you are calling exists but has compiler errors, it may
be reported incorrectly as "not found".  This is already filed as a bug.
 
</p>
<cfelseif left(error.tagName,4) is "cfx_">
<p>
You are attempting to call an unknown or unregistered CFX custom tag.
Native CFX custom tags are registered by editing
#ExpandPath("/WEB-INF/web.xml")#
</p>
<cfelseif left(error.tagName,2) is "cf">
<p>
A tag starting with 'CF' has been detected. This tag is not supported by this version of ColdFusion. 
Please verify your typo and try again.
</p>
<cfelse>
<p>
The tag you are trying to use cannot be found within any tag
libraries you have imported.
</P>
</cfif>
 
</cfoutput>
</ex:detail>