blob: 51820c3e4e02a3f448a603384b4cb27ff4d7413c [file] [log] [blame]
// Copyright 2006, 2008 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.tapestry5.ioc.internal.services;
import org.apache.tapestry5.ioc.internal.util.InternalUtils;
import org.apache.tapestry5.ioc.services.ExceptionInfo;
import static java.util.Collections.unmodifiableList;
import java.util.List;
import java.util.Map;
public class ExceptionInfoImpl implements ExceptionInfo
{
private final String className;
private final String message;
private final Map<String, Object> properties;
private final List<StackTraceElement> stackTrace;
public ExceptionInfoImpl(Throwable t, Map<String, Object> properties, List<StackTraceElement> stackTrace)
{
className = t.getClass().getName();
message = t.getMessage() != null ? t.getMessage() : "";
this.properties = properties;
this.stackTrace = unmodifiableList(stackTrace);
}
public String getClassName()
{
return className;
}
public String getMessage()
{
return message;
}
public Object getProperty(String name)
{
return properties.get(name);
}
public List<String> getPropertyNames()
{
return InternalUtils.sortedKeys(properties);
}
public List<StackTraceElement> getStackTrace()
{
return stackTrace;
}
}