/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.directory.shared.ldap; import java.io.PrintStream; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; /** * This exception is thrown when Base class for nested exceptions. * * @author Apache Directory Project * @version $Revision$ */ public class RuntimeMultiException extends RuntimeException { private static final long serialVersionUID = 8582253398936366771L; /** Collection of nested exceptions. */ private Collection nestedExceptions = new ArrayList(); /** * Constructs an Exception without a message. */ public RuntimeMultiException() { super(); } /** * Constructs an Exception with a detailed message. * * @param message * The message associated with the exception. */ public RuntimeMultiException(String message) { super( message ); } /** * Lists the nested exceptions that this Exception encapsulates. * * @return an Iterator over the nested exceptions. */ public Iterator listNestedExceptions() { return nestedExceptions.iterator(); } /** * Gets the size (number of) exceptions nested within this exception. * * @return the size of this nested exception. */ public int size() { return nestedExceptions.size(); } /** * Tests to see if exceptions are nested within this exception. * * @return true if an exception is nested, false otherwise */ public boolean isEmpty() { return nestedExceptions.isEmpty(); } /** * Add an exeception to this multiexception. * * @param nested * exception to add to this MultiException. */ public void addThrowable( Throwable nested ) { nestedExceptions.add( nested ); } // /////////////////////////////////////////// // Overriden Throwable Stack Trace Methods // // /////////////////////////////////////////// /** * Beside printing out the standard stack trace this method prints out the * stack traces of all the nested exceptions. * * @param out * PrintWriter to write the nested stack trace to. */ public void printStackTrace( PrintWriter out ) { super.printStackTrace( out ); out.println( "Nested exceptions to follow:\n" ); boolean isFirst = true; for ( Throwable throwable:nestedExceptions ) { if ( isFirst ) { isFirst = false; } else { out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" ); } throwable.printStackTrace(); } out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" ); } /** * Beside printing out the standard stack trace this method prints out the * stack traces of all the nested exceptions. * * @param out * PrintStream to write the nested stack trace to. */ public void printStackTrace( PrintStream out ) { super.printStackTrace( out ); out.println( "Nested exceptions to follow:\n" ); boolean isFirst = true; for ( Throwable throwable:nestedExceptions ) { if ( isFirst ) { isFirst = false; } else { out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" ); } throwable.printStackTrace(); } out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" ); } /** * Beside printing out the standard stack trace this method prints out the * stack traces of all the nested exceptions using standard error. */ public void printStackTrace() { this.printStackTrace( System.err ); } }