/** * Copyright (C) 2012 BonitaSoft S.A. * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2.0 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bonitasoft.web.toolkit.client.common.exception.http; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author Séverin Moussel * */ public class ServerException extends HttpException { private static final long serialVersionUID = -2822846735990124977L; protected String originalClassName = null; protected List<String> originalStackTrace = new ArrayList<String>(); public ServerException() { super(); } public ServerException(final String message, final Throwable cause) { super(message, cause); } public ServerException(final String message) { super(message); } public ServerException(final Throwable cause) { super(cause); } /** * @return the originalClassName */ public String getOriginalClassName() { return this.originalClassName; } /** * @param originalClassName * the originalClassName to set */ public ServerException setOriginalClassName(final String originalClassName) { this.originalClassName = originalClassName; return this; } /** * @return the originalStackTrace */ public List<String> getOriginalStackTrace() { return this.originalStackTrace; } /** * @param originalStackTrace * the originalStackTrace to set */ public ServerException setOriginalStackTrace(final List<String> originalStackTrace) { this.originalStackTrace.addAll(originalStackTrace); return this; } /** * @param originalStackTrace * the originalStackTrace to set */ public ServerException setOriginalStackTrace(final String... originalStackTrace) { return this.setOriginalStackTrace(Arrays.asList(originalStackTrace)); } @Override protected String defaultMessage() { return "The server has encountered an unknown error"; } }