<?xml version="1.0" encoding="UTF-8"?> <!-- * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> <ui:composition template="/main.xhtml" xmlns:tc="http://myfaces.apache.org/tobago/component" xmlns:ui="http://java.sun.com/jsf/facelets"> <ui:param name="title" value="Sample Error Scenarios (Todo: is to be optimized) "/> <tc:gridLayout rows="35px 35px 35px 35px" columns="100px 1fr"> <tc:flowLayout> <tc:span column="2"/> <tc:out value="When using MyFaces or Facelets you have to turn off the exception mechanism of them to use this demo. See in the MyFaces Wiki: "/> <tc:link link="http://wiki.apache.org/myfaces/Handling_Server_Errors" label="Handling Server Errors"/> </tc:flowLayout> <tc:button action="#{bestPracticeController.throwException}" label="Application"/> <tc:out value="An exception is thrown in the application. The servlet container forwards to a page defined in the web.xml."/> <tc:button action="error-404" label="Not Found"/> <tc:out value="The navigation handler refers to a non existing page. The error code 404 in the web.xml is affected."/> <tc:button action="syntax" label="Syntax Error"/> <tc:out value="The navigation handler refers to a page with a syntax error."/> </tc:gridLayout> </ui:composition>