blob: 12adec9c9666a70303654909e3b26455ad55fbfe [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// 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.
package org.apache.tapestry.util.exception;
import java.io.Serializable;
/**
* A description of an <code>Exception</code>. This is useful when presenting
* an exception (in output or on a web page).
* <p>
* We capture all the information about an exception as Strings.
*
* @author Howard Lewis Ship
*/
public class ExceptionDescription implements Serializable
{
/**
* @since 2.0.4
*/
private static final long serialVersionUID = -4874930784340781514L;
private String _exceptionClassName;
private String _message;
private ExceptionProperty[] _properties;
private String[] _stackTrace;
public ExceptionDescription(String exceptionClassName, String message,
ExceptionProperty[] properties, String[] stackTrace)
{
this._exceptionClassName = exceptionClassName;
this._message = message;
this._properties = properties;
this._stackTrace = stackTrace;
}
public String getExceptionClassName()
{
return _exceptionClassName;
}
public String getMessage()
{
return _message;
}
public ExceptionProperty[] getProperties()
{
return _properties;
}
public String[] getStackTrace()
{
return _stackTrace;
}
}