001// Copyright 2004, 2005 The Apache Software Foundation
002//
003// Licensed under the Apache License, Version 2.0 (the "License");
004// you may not use this file except in compliance with the License.
005// You may obtain a copy of the License at
006//
007//     http://www.apache.org/licenses/LICENSE-2.0
008//
009// Unless required by applicable law or agreed to in writing, software
010// distributed under the License is distributed on an "AS IS" BASIS,
011// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
012// See the License for the specific language governing permissions and
013// limitations under the License.
014
015package org.apache.tapestry.wml.pages;
016
017import org.apache.tapestry.util.exception.ExceptionAnalyzer;
018import org.apache.tapestry.util.exception.ExceptionDescription;
019import org.apache.tapestry.wml.Deck;
020
021/**
022 * Default exception reporting page for WML applications.
023 * 
024 * @author David Solis
025 * @since 3.0
026 */
027public abstract class WMLException extends Deck
028{
029    private ExceptionDescription[] _exceptions;
030
031    public void initialize()
032    {
033        _exceptions = null;
034    }
035
036    public ExceptionDescription[] getExceptions()
037    {
038        return _exceptions;
039    }
040
041    public void setException(Throwable value)
042    {
043        ExceptionAnalyzer analyzer;
044
045        analyzer = new ExceptionAnalyzer();
046
047        _exceptions = analyzer.analyze(value);
048    }
049}