blob: 0f436a1ac9fef2dc912c1b1b721ca6b699df4253 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.internal;
/**
* Common interface for WrappedRuntime and Wrapped exceptions, which can contain nested exceptions
*/
public interface IWrappedException {
/**
* Return the messages from this and all nested exceptions, in order from outermost to innermost
*/
public String[] getAllMessages();
/**
* Return the messages from this and all nested exceptions, in order from outermost to innermost,
* concatenated as one
*/
public String getConcatenatedMessages();
public String getMessage();
public java.lang.Exception getNestedException();
public void printStackTrace();
public void printStackTrace(java.io.PrintStream s);
public void printStackTrace(java.io.PrintWriter s);
}