17 lines
586 B
Plaintext
Executable File
17 lines
586 B
Plaintext
Executable File
<%@ page isErrorPage="true"
|
|
import="com.arsdigita.dispatcher.DispatcherHelper"
|
|
%><% DispatcherHelper.forceCacheDisable(response); %>
|
|
<%-- NB. The above cacheDisable command must be on the first line of the jsp
|
|
since the header must be written before any data is output --%>
|
|
|
|
<jsp:include page="error-header.jsp">
|
|
<jsp:param name="title" value="Required item missing"/>
|
|
</jsp:include>
|
|
|
|
<p>One of the items you have requested cannot be found. It may have
|
|
been deleted by another user.</p>
|
|
|
|
<jsp:include page="error-code.jsp"/>
|
|
|
|
<jsp:include page="error-footer.jsp"/>
|