%--
Copyright (c) 2007 Google Inc.
Licensed 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.
--%>
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ page import="com.google.api.gbase.client.ServiceErrors"%>
<%@ page import="sample.gbase.recipe.RecipeUtil"%>
<%@page import="sample.gbase.recipe.DisplayUtils"%>
<%@page import="com.google.api.gbase.client.ServiceError"%>
<%@ include file="demoLabel.inc" %>
<%
String error = RecipeUtil.getRecipeError(request);
String description = RecipeUtil.getRecipeErrorDescription(request);
ServiceErrors serviceErrors = RecipeUtil.getRecipeErrorObject(request);
%>
An error has occured. Hit the browser's Back button for continuing to use
the Recipe Demo Application.
<%if (error != null) { %>
<%= DisplayUtils.escape(error) %>
<%} // has error %>
<%if (description != null) { %>
Detailed information about the error:
<%= DisplayUtils.escape(description) %>
<%} // has description %>
<%if (serviceErrors != null) { %>
Detailed information about the Google Base service error:
<%for (ServiceError serviceError : serviceErrors.getAllErrors()) { %>
- <%= DisplayUtils.escape(serviceError.getType()) %> : <%= DisplayUtils.escape(serviceError.getReason()) %>
<%} // for each service error %>
<%if (serviceErrors.getAllErrors().size() == 0) { %>
No service errors could be parsed
<%} // if no service errors registered %>
<%} // has errors object %>
<%@ include file="demoLabel.inc" %>
<%@ include file="footer.inc" %>