/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library 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 Lesser General Public License for more * details. */ package com.liferay.portal.kernel.exception; import com.liferay.portal.kernel.util.ClassUtil; import com.liferay.portal.kernel.util.StackTraceUtil; import java.util.Collection; /** * @author Michael C. Han */ public class BulkException extends Exception { public BulkException(Collection<Throwable> causes) { _causes = causes; } public BulkException(String message, Collection<Throwable> causes) { super(message); _causes = causes; } public Collection<Throwable> getCauses() { return _causes; } @Override public String getMessage() { StringBuilder sb = new StringBuilder(7 * _causes.size() + 4); sb.append("{message = "); sb.append(super.getMessage()); sb.append("\n"); for (Throwable cause : _causes) { sb.append("{"); sb.append(ClassUtil.getClassName(cause)); sb.append(":"); sb.append(cause.getMessage()); sb.append(", "); sb.append(StackTraceUtil.getStackTrace(cause)); sb.append("}\n"); } sb.append("}"); return sb.toString(); } private final Collection<Throwable> _causes; }