001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017
018package org.apache.commons.dbcp2;
019
020import java.util.List;
021
022/**
023 * An exception wrapping a list of exceptions.
024 *
025 * @since 2.4.0
026 */
027public class ListException extends Exception {
028
029    private static final long serialVersionUID = 1L;
030
031    private final List<Throwable> exceptionList;
032
033    /**
034     * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
035     * be initialized by a call to {@link #initCause}.
036     *
037     * @param message
038     *            the detail message. The detail message is saved for later retrieval by the {@link #getMessage()}
039     *            method.
040     * @param exceptionList
041     *            a list of exceptions.
042     */
043    public ListException(final String message, final List<Throwable> exceptionList) {
044        super(message);
045        this.exceptionList = exceptionList;
046    }
047
048    /**
049     * Gets the list of exceptions.
050     *
051     * @return the list of exceptions.
052     */
053    public List<Throwable> getExceptionList() {
054        return exceptionList;
055    }
056
057}